Field | Description/Action |
Library Name | Name of the library where the dataqueue exists. Type the library name or select from the library list (containing user, system, and other libraries added). |
Queue Name | Name of the dataqueue from where the adapter service reads. |
Operation Type | Type of read operation. Possible values are: Read. Read a record from the dataqueue and remove it from the dataqueue. If no record exists in the dataqueue, then return. Peek. Read a record from the dataqueue without removing it from the dataqueue. If no record exists in the dataqueue, then return. |
Read Timeout (sec) | Time in seconds to wait if the dataqueue is empty. Specify -1 to wait until a record becomes available. |
Queue Type | Type of dataqueue. Possible values are: Sequential. Dataqueue organized in a linear or sequential (FIFO or LIFO) order. Keyed. Dataqueue organized as key-value pair. The key-value pair allows direct access to messages based on the specific identifier (key). |
Key Type | List of the IBM Power native data types in which the key is stored in the dataqueue if the Queue Type is Keyed. |
Key Input Type | List of the possible Java data types corresponding to the Key Type selected, if the Queue Type is Keyed. |
Key Length | Length of the key in bytes if the Queue Type is Keyed. |
Key Value | Value of the key if the Queue Type is Keyed. |
Key Compare Type | Type of comparisons to perform on the Key Value if the Queue Type is Keyed. Possible values are: EQ. Equal. NE. Not equal. LT. Less than. LE. Less than or equal. GT. Greater than. GE. Greater than or equal. |
Field | Description/Action |
Data Name | Name of the record. |
Native Data Type | List of IBM Power native data types for the record. |
Byte Length | Length in bytes of the data value. |
Is Array | Flag to indicate if the data value is an array. |
Data Occurrence | Number of elements in the array if Is Array is selected. Default value is 1. |
Output Data Type | List the possible Java data types depending on the Native Data Type and the Is Array fields selection. |