Enum Class TransmissionState

java.lang.Object
java.lang.Enum<TransmissionState>
com.ptc.mvc.ds.client.TransmissionState
All Implemented Interfaces:
Serializable, Comparable<TransmissionState>, Constable

public enum TransmissionState extends Enum<TransmissionState>
Represents the states a DataSource can be in with respect to adding and removing data from the DataSource
Supported API: true

Extendable: true
  • Enum Constant Details

    • OPEN

      public static final TransmissionState OPEN
      The default status, signifying that more data can be added to the DataSource and there is still data to remove from it

      Supported API: true
    • CLOSED

      public static final TransmissionState CLOSED
      No more data can be added to the DataSource, but there is still data to remove from it

      Supported API: true
    • COMPLETED

      public static final TransmissionState COMPLETED
      All data has been added to the DataSource, and all data has been removed from it

      Supported API: true