Interface IObservableSubscription
Observable set of subscription symbols for the specific event type.
For more details see Javadoc.
public interface IObservableSubscription
Properties
IsClosed
Gets a value indicating whether if this subscription is closed. Javadoc.
bool IsClosed { get; }
Property Value
Methods
GetEventTypes()
Gets a set of subscribed event types. The resulting set cannot be modified. Javadoc.
ISet<Type> GetEventTypes()
Returns
IsContainsEventType(Type)
Gets a value indicating whether if this subscription contains the corresponding event type. Javadoc.
bool IsContainsEventType(Type eventType)
Parameters
eventType
TypeThe event type.
Returns
- bool
Returns
true
if this subscription contains the corresponding event type.