Interface PubSub<T>
-
- Type Parameters:
T
- represents the type of data that is published or subscribed
- All Known Subinterfaces:
PubSub.PublisherMessage<T>
,PubSub.SubscriberMessage<T>
- All Known Implementing Classes:
PubSub.Publish
,PubSub.Subscribe
,PubSub.SubscribeOnly
,PubSub.Unsubscribe
public interface PubSub<T>
Represents the protocol or messages about publishing data and subscribing it
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PubSub.Publish<T>
Represents a publish actionstatic class
PubSub.Publish$
static interface
PubSub.PublisherMessage<T>
Represents the messages about publishing data e.g Publishstatic class
PubSub.Subscribe<T>
Represents the subscribe action where all the current state publishing from the particular component can be subscribed tostatic class
PubSub.Subscribe$
static class
PubSub.SubscribeOnly<T>
Represents the subscribe action for current states specified by a set of stateNamesstatic class
PubSub.SubscribeOnly$
static interface
PubSub.SubscriberMessage<T>
Represents the messages about subscribing data e.g Subscribe and Unsubscribestatic class
PubSub.Unsubscribe<T>
Represents a unsubscribe actionstatic class
PubSub.Unsubscribe$
-