javax.resource.cci
Interface InteractionSpec

All Superinterfaces:
java.io.Serializable

public interface InteractionSpec
extends java.io.Serializable

An InteractionSpec holds properties for use by an Interaction in order to execute a function on the underlying resource. There is a set of standard properties which are used to give hints to an Interaction object about the requirements of a ResultSet. FetchSize, FetchDirection, MaxFieldSize, ResultSetType, ResultSetConcurrency A specific implementation may implement additional properties.


Field Summary
static int SYNC_RECEIVE
          Execution results in a synchronous receive of the output Record
static int SYNC_SEND
          Execution requires only a send to the underlying resource.
static int SYNC_SEND_RECEIVE
          Execution requires only a send to the underlying resource.
 

Field Detail

SYNC_SEND

public static final int SYNC_SEND
Execution requires only a send to the underlying resource.

See Also:
Constant Field Values (src)

SYNC_SEND_RECEIVE

public static final int SYNC_SEND_RECEIVE
Execution requires only a send to the underlying resource.

See Also:
Constant Field Values (src)

SYNC_RECEIVE

public static final int SYNC_RECEIVE
Execution results in a synchronous receive of the output Record

See Also:
Constant Field Values (src)