TransportFactory

public interface TransportFactory implements Closeable

A factory for creating channel-based transport for Message inter-exchange between the current deployment component and other application parts. Inspired by Publish-Subscriber Channel pattern.

Inheritors

Functions

Link copied to clipboard
public abstract Publisher createPublisher(ChannelId id)
Creates a Publisher channel with the given ID.
Link copied to clipboard
public abstract Subscriber createSubscriber(ChannelId id)
Creates a Subscriber channel with the given ID.

Inherited functions

Link copied to clipboard
public void checkOpen()
Ensures that the object is open.
Link copied to clipboard
public abstract void close()
Link copied to clipboard
public abstract boolean isOpen()
Tells if the object is still open.