Page History
Constructors
DataQueue ( String library, String queue )Methods
...
String getEncoding ()...
String check ()
...
String check ( String authority )
...
int getKeyLength ()
...
int getMessageLength ()
...
boolean clear ()
...
boolean clear ( String key )
...
boolean write ( String data )
...
boolean write ( byte[] data )
...
boolean write ( String key, String data )
...
boolean write ( String key, byte[] data )
...
byte[] read ( int waitTime )
...
byte[] read ( String key, int waitTime )
...
String readString ( int waitTime )
...
String readString ( String key, int waitTime )
Maximum sizes
Queue length | 10 bytes |
Library length | 10 bytes |
Authority length | 10 bytes |
Max Key length | 256 bytes |
Max Message length | 64512 bytes |
Comments
The write method will convert the Unicode String into bytes using the CCSID of the job.
...