Interface StreamData<T>
-
- Type Parameters:
T- type of the data
public interface StreamData<T>Stream data received by the subscriber.- Since:
- 1.4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TgetData()Returns the data from the stream.booleanisPrivate()Returnstrueif the data was sent to this subscriber only andfalseotherwise.
-
-
-
Method Detail
-
isPrivate
boolean isPrivate()
Returnstrueif the data was sent to this subscriber only andfalseotherwise.- Returns:
trueif the data was sent to this subscriber only andfalseotherwise.
-
getData
T getData()
Returns the data from the stream.- Returns:
- The data from the stream
-
-