Interface IStreamsService


public interface IStreamsService
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    deleteStream(String streamName)
    Deletes a test stream stored in the Configuration Property Store (CPS) with a matching name.
    getStreamByName(String streamName)
    Returns a test stream stored in the Configuration Property Store (CPS) with a matching name.
    Returns a list of all the test streams stored in the Configuration Property Store (CPS).
  • Method Details

    • getStreams

      List<IStream> getStreams() throws StreamsException
      Returns a list of all the test streams stored in the Configuration Property Store (CPS).
      Returns:
      a list of all test streams stored in the Configuration Property Store (CPS).
      Throws:
      StreamsException - if there is an issue accessing the CPS.
    • getStreamByName

      IStream getStreamByName(String streamName) throws StreamsException
      Returns a test stream stored in the Configuration Property Store (CPS) with a matching name.
      Returns:
      a stream stored in the Configuration Property Store (CPS) with a matching name.
      Throws:
      StreamsException - if there is an issue accessing the CPS.
    • deleteStream

      void deleteStream(String streamName) throws StreamsException
      Deletes a test stream stored in the Configuration Property Store (CPS) with a matching name.
      Throws:
      StreamsException - if there is an issue accessing the CPS.