|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Interface for sending and/or receiving a stream of records, each indexed by a small standard header. This header identifies the type of each record, the writer of the record, the time at which the record was generated, and the number of bytes to follow in a user-defined format. The type and writer are given as integer codes, which correspond to arbitrary-length strings sent in-stream to construct a pair of queryable dynamic data dictionaries.
| Method Summary | |
void |
connectRead(java.lang.String url)
Connect this stream to a data source at the given URL. |
void |
connectWrite(java.lang.String url)
Connect this stream to a data sink at the given URL. |
void |
disconnect()
Signal that no more records are to be received (if reading) or sent (if writing). |
int |
getRecordSourceCode(java.lang.String name)
Return the integer code associated with the user-defined record source string in this record stream. |
java.lang.String |
getRecordSourceString(int code)
Return the arbitrary-length String identifying the user-defined source (writer) ID associated with a given code in this record stream. |
int |
getRecordTypeCode(java.lang.String name)
Return the integer code associated with the user-defined record type string in this record stream. |
java.lang.String |
getRecordTypeString(int code)
Return the arbitrary-length String identifying the user-defined record type associated with a given code in this record stream. |
boolean |
isConnected()
Return true if this stream has been successfully connected to a data source or sink, and not disconnected. |
int |
receive(int type_code,
int source_code,
double timestamp,
byte[] bytes,
int offset,
int length)
Process a single record in the data stream. |
int |
send(int type_code,
int source_code,
double timestamp)
Return the same value (zero for success, nonzero for failure) that would be returned by a send with the given header information and actual payload data, assuming no IOExceptions etc. |
int |
send(int type_code,
int source_code,
double timestamp,
byte[] bytes,
int offset,
int length)
Send a single record on the data stream. |
| Method Detail |
public void connectWrite(java.lang.String url)
throws streamException
streamException
public void connectRead(java.lang.String url)
throws streamException
streamExceptionpublic boolean isConnected()
public void disconnect()
public int receive(int type_code,
int source_code,
double timestamp,
byte[] bytes,
int offset,
int length)
These codes are not portable across implementations, or even across runs within the same implementation; they are used for efficiency purposes to minimize the overhead associated with constructing, sending, receiving, and interpreting Strings. Returns zero for successful receipt, non-zero for failure.
public int send(int type_code,
int source_code,
double timestamp,
byte[] bytes,
int offset,
int length)
These codes are not portable across implementations, or even across runs within the same implementation; they are used for efficiency purposes to minimize the overhead associated with constructing, sending, receiving, and interpreting Strings. Returns zero if a record was sent, nonzero if no record was sent (due to error, suppression due to filtering, or any other cause).
public int send(int type_code,
int source_code,
double timestamp)
Many source-side filtering schemes will suppress sends of records that match given profiles for record types, points of origin, or intervals of time. This standard inquiry method allows a savvy sender to avoid the overhead of preparing a bufferful of bytes that will simply be ignored anyway. First test the waters with a no-payload send(), and if it returns success (zero), prepare the bytes and call the full version of send().
public java.lang.String getRecordTypeString(int code)
public int getRecordTypeCode(java.lang.String name)
The code returned for an unknown name depends on the state of the stream. In a stream connected for writing, a new code is returned which henceforth will refer to that string; in a stream which is unconnected or connected for reading, the error code -1 is returned, signifying that the code is not yet known (i.e., because the stream record that might identify the code has not yet been processed).
public java.lang.String getRecordSourceString(int code)
public int getRecordSourceCode(java.lang.String name)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||