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

    Modifier and Type
    Method
    Description
    Returns the data from the stream.
    boolean
    Returns true if the data was sent to this subscriber only and false otherwise.
  • Method Details

    • isPrivate

      boolean isPrivate()
      Returns true if the data was sent to this subscriber only and false otherwise.
      Returns:
      true if the data was sent to this subscriber only and false otherwise.
    • getData

      T getData()
      Returns the data from the stream.
      Returns:
      The data from the stream