Package joynr.system
Interface RoutingAsync
-
- All Superinterfaces:
Routing
- All Known Subinterfaces:
RoutingProxy
public interface RoutingAsync extends Routing
-
-
Field Summary
-
Fields inherited from interface joynr.system.Routing
INTERFACE_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Future<Void>addMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId)default Future<Void>addMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, BinderAddress binderAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, BinderAddress binderAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, BrowserAddress browserAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, BrowserAddress browserAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, ChannelAddress channelAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, ChannelAddress channelAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, MqttAddress mqttAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, MqttAddress mqttAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, UdsAddress udsAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, UdsAddress udsAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, UdsClientAddress udsClientAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, UdsClientAddress udsClientAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, WebSocketAddress webSocketAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, WebSocketAddress webSocketAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<Void>addNextHop(Callback<Void> callback, String participantId, WebSocketClientAddress webSocketClientAddress, Boolean isGloballyVisible)default Future<Void>addNextHop(Callback<Void> callback, String participantId, WebSocketClientAddress webSocketClientAddress, Boolean isGloballyVisible, MessagingQos messagingQos)Future<String>getGlobalAddress(Callback<String> callback)default Future<String>getGlobalAddress(Callback<String> callback, MessagingQos messagingQos)Future<String>getReplyToAddress(Callback<String> callback)default Future<String>getReplyToAddress(Callback<String> callback, MessagingQos messagingQos)Future<Void>removeMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId)default Future<Void>removeMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId, MessagingQos messagingQos)Future<Void>removeNextHop(Callback<Void> callback, String participantId)default Future<Void>removeNextHop(Callback<Void> callback, String participantId, MessagingQos messagingQos)Future<Boolean>resolveNextHop(Callback<Boolean> callback, String participantId)default Future<Boolean>resolveNextHop(Callback<Boolean> callback, String participantId, MessagingQos messagingQos)
-
-
-
Method Detail
-
getGlobalAddress
default Future<String> getGlobalAddress(Callback<String> callback, MessagingQos messagingQos)
-
getReplyToAddress
default Future<String> getReplyToAddress(Callback<String> callback, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, ChannelAddress channelAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, ChannelAddress channelAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, MqttAddress mqttAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, MqttAddress mqttAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, BrowserAddress browserAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, BrowserAddress browserAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, WebSocketAddress webSocketAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, WebSocketAddress webSocketAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, UdsAddress udsAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, UdsAddress udsAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, BinderAddress binderAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, BinderAddress binderAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, WebSocketClientAddress webSocketClientAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, WebSocketClientAddress webSocketClientAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
addNextHop
Future<Void> addNextHop(Callback<Void> callback, String participantId, UdsClientAddress udsClientAddress, Boolean isGloballyVisible)
-
addNextHop
default Future<Void> addNextHop(Callback<Void> callback, String participantId, UdsClientAddress udsClientAddress, Boolean isGloballyVisible, MessagingQos messagingQos)
-
removeNextHop
default Future<Void> removeNextHop(Callback<Void> callback, String participantId, MessagingQos messagingQos)
-
resolveNextHop
default Future<Boolean> resolveNextHop(Callback<Boolean> callback, String participantId, MessagingQos messagingQos)
-
addMulticastReceiver
Future<Void> addMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId)
-
addMulticastReceiver
default Future<Void> addMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId, MessagingQos messagingQos)
-
removeMulticastReceiver
Future<Void> removeMulticastReceiver(Callback<Void> callback, String multicastId, String subscriberParticipantId, String providerParticipantId)
-
-