uCosminexus Stream Data Platform - Application Framework Application Development Guide

[Contents][Index][Back][Next]

put(ArrayList<StreamTuple> tuple_list) method

Format

void put(ArrayList<StreamTuple> tuple_list)

Explanation

Sends multiple tuples.

Parameters

tuple_list

Specifies a list of tuples to be sent (StreamTuple type object).

Exceptions

The following table shows the exceptions and the conditions for their generation.

Exception Generation condition
ClassCastException An element other than StreamTuple was included in the list in the parameter.
NullPointerException
  • null or a list containing null was specified for the parameter.
  • A StreamTuple type object containing null was specified in one of the data object arrays constituting an element of the tuple list.
SDPClientCommunicationException A communication exception occurred during RMI connection.
SDPClientException
  • The data type of an element in the tuple list is different from the stream definition.
  • The input stream was already closed.
SDPClientQueryGroupHoldException The query group is held.
SDPClientQueryGroupNotExistException The query group was deleted.
SDPClientQueryGroupStateException The query group is not being executed.
SDPClientQueryGroupStopException The query group is stopped.

Return value

None.