Class PubSubSocketPair
- java.lang.Object
-
- de.unistuttgart.isw.sfsc.commonjava.zmq.pubsubsocketpair.PubSubSocketPair
-
- All Implemented Interfaces:
NotThrowingAutoCloseable,java.lang.AutoCloseable
public class PubSubSocketPair extends java.lang.Object implements NotThrowingAutoCloseable
-
-
Method Summary
Modifier and Type Method Description voidclose()static PubSubSocketPaircreate(Reactor reactor)ReactiveSocket.InboxdataInbox()ReactiveSocket.OutboxdataOutbox()ReactiveSocket.SettingspublisherSettings()ReactiveSocket.ConnectorpublisherSocketConnector()ReactiveSocket.SettingssubscriberSettings()ReactiveSocket.ConnectorsubscriberSocketConnector()ReactiveSocket.InboxsubscriptionInbox()ReactiveSocket.OutboxsubscriptionOutbox()
-
-
-
Method Detail
-
create
public static PubSubSocketPair create(Reactor reactor) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException
- Throws:
java.util.concurrent.ExecutionExceptionjava.lang.InterruptedException
-
dataOutbox
public ReactiveSocket.Outbox dataOutbox()
-
dataInbox
public ReactiveSocket.Inbox dataInbox()
-
subscriptionOutbox
public ReactiveSocket.Outbox subscriptionOutbox()
-
subscriptionInbox
public ReactiveSocket.Inbox subscriptionInbox()
-
publisherSocketConnector
public ReactiveSocket.Connector publisherSocketConnector()
-
subscriberSocketConnector
public ReactiveSocket.Connector subscriberSocketConnector()
-
publisherSettings
public ReactiveSocket.Settings publisherSettings()
-
subscriberSettings
public ReactiveSocket.Settings subscriberSettings()
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfaceNotThrowingAutoCloseable
-
-