Errai 3.0.1-SNAPSHOT

Uses of Interface
org.jboss.errai.bus.client.api.messaging.MessageBus

Packages that use MessageBus
org.jboss.errai.bus.client This package contains the core client API and shared client/server libraries for the ErraiBus framework. 
org.jboss.errai.bus.client.api   
org.jboss.errai.bus.client.api.base   
org.jboss.errai.bus.client.api.builder   
org.jboss.errai.bus.client.api.messaging   
org.jboss.errai.bus.client.framework   
org.jboss.errai.bus.client.util   
org.jboss.errai.bus.server The server-side components of ErraiBus. 
org.jboss.errai.bus.server.api   
org.jboss.errai.bus.server.io   
org.jboss.errai.bus.server.service   
org.jboss.errai.cdi.server   
org.jboss.errai.cdi.server.events   
org.jboss.errai.ioc.support.bus.client   
org.jboss.errai.otec.client   
org.jboss.errai.otec.server   
org.jboss.errai.tools.monitoring   
org.jboss.errai.ui.cordova   
 

Uses of MessageBus in org.jboss.errai.bus.client
 

Methods in org.jboss.errai.bus.client that return MessageBus
static MessageBus ErraiBus.get()
          Obtain an instance of the client MessageBus.
 

Uses of MessageBus in org.jboss.errai.bus.client.api
 

Subinterfaces of MessageBus in org.jboss.errai.bus.client.api
 interface ClientMessageBus
          An extended client-specific/in-browser interface of MessageBus, which defines client-specific functionality.
 

Methods in org.jboss.errai.bus.client.api with parameters of type MessageBus
 void BusMonitor.attach(MessageBus bus)
           
 

Uses of MessageBus in org.jboss.errai.bus.client.api.base
 

Methods in org.jboss.errai.bus.client.api.base with parameters of type MessageBus
 void CommandMessage.sendNowWith(MessageBus viaThis)
           
 

Uses of MessageBus in org.jboss.errai.bus.client.api.builder
 

Methods in org.jboss.errai.bus.client.api.builder with parameters of type MessageBus
 void MessageBuildSendable.sendGlobalWith(MessageBus viaThis)
          Sends the message globally with the specified MessageBus
 void RemoteCallSendable.sendNowWith(MessageBus viaThis)
          Specifies how to send the message
 void MessageBuildSendable.sendNowWith(MessageBus viaThis)
          Sends the message with the specified MessageBus
 void MessageBuildSendable.sendNowWith(MessageBus viaThis, boolean fireMessageListener)
          Sends the message with the specified MessageBus
 

Uses of MessageBus in org.jboss.errai.bus.client.api.messaging
 

Methods in org.jboss.errai.bus.client.api.messaging with parameters of type MessageBus
 void Message.sendNowWith(MessageBus viaThis)
          Transmits this message to the specified MessageBus instance.
 

Uses of MessageBus in org.jboss.errai.bus.client.framework
 

Classes in org.jboss.errai.bus.client.framework that implement MessageBus
 class ClientMessageBusImpl
          The default client MessageBus implementation.
 

Methods in org.jboss.errai.bus.client.framework with parameters of type MessageBus
 void RpcProxyLoader.loadProxies(MessageBus bus)
           
 void AbstractRpcProxy.sendRequest(MessageBus bus, RemoteCallSendable sendable)
           
 

Uses of MessageBus in org.jboss.errai.bus.client.util
 

Methods in org.jboss.errai.bus.client.util with parameters of type MessageBus
static void ErrorHelper.disconnectRemoteBus(MessageBus bus, Message message)
          Sends a disconnect command message to the client bus
static void ErrorHelper.handleMessageDeliveryFailure(MessageBus bus, Message message, String errorMessage, Throwable e, boolean disconnect)
          Handles the failed delivery of a message, and sends the error to the appropriate place
static void ErrorHelper.sendClientError(MessageBus bus, Message message, String errorMessage, String additionalDetails)
          Sends the error message via conversation to the ClientBusErrors subject
static void ErrorHelper.sendClientError(MessageBus bus, Message message, String errorMessage, Throwable e)
          Creates the stacktrace for the error message and sends it via conversation to the ClientBusErrors subject
static void ErrorHelper.sendClientError(MessageBus bus, String queueId, String errorMessage, String additionalDetails)
           
 

Uses of MessageBus in org.jboss.errai.bus.server
 

Classes in org.jboss.errai.bus.server that implement MessageBus
 class ServerMessageBusImpl
          The ServerMessageBusImpl implements the ServerMessageBus, making it possible for the server to send and receive messages
 

Methods in org.jboss.errai.bus.server with parameters of type MessageBus
static void Worker.deliverToBus(MessageBus bus, Message message)
           
 

Uses of MessageBus in org.jboss.errai.bus.server.api
 

Subinterfaces of MessageBus in org.jboss.errai.bus.server.api
 interface ServerMessageBus
          This interface, ServerMessageBus, extends the client's MessageBus, and adds functionality so the server can transmit messages to a client and vice versa
 

Uses of MessageBus in org.jboss.errai.bus.server.io
 

Fields in org.jboss.errai.bus.server.io declared as MessageBus
protected  MessageBus AbstractRPCMethodCallback.bus
           
 

Methods in org.jboss.errai.bus.server.io with parameters of type MessageBus
static MessageCallback RPCEndpointFactory.createEndpointFor(ServiceInstanceProvider provider, Method method, MessageBus messageBus)
           
 

Constructors in org.jboss.errai.bus.server.io with parameters of type MessageBus
AbstractRPCMethodCallback(ServiceInstanceProvider genericSvc, Method method, MessageBus bus)
           
AsyncRPCEndpointCallback(ServiceInstanceProvider genericSvc, Method method, MessageBus bus)
           
ValueReplyRPCEndpointCallback(ServiceInstanceProvider genericSvc, Method method, MessageBus bus)
           
VoidRPCEndpointCallback(ServiceInstanceProvider genericSvc, Method method, MessageBus bus)
           
 

Uses of MessageBus in org.jboss.errai.bus.server.service
 

Classes in org.jboss.errai.bus.server.service that implement MessageBus
 class MessageBusProxy
           
 

Uses of MessageBus in org.jboss.errai.cdi.server
 

Constructors in org.jboss.errai.cdi.server with parameters of type MessageBus
MessageBusBean(MessageBus delegate)
           
SenderBean(Type type, Set<Annotation> qualifiers, MessageBus bus)
           
 

Uses of MessageBus in org.jboss.errai.cdi.server.events
 

Fields in org.jboss.errai.cdi.server.events declared as MessageBus
protected  MessageBus DynamicEventObserverMethod.bus
           
 

Methods in org.jboss.errai.cdi.server.events that return MessageBus
 MessageBus ConversationalEventWrapper.getBus()
           
 

Constructors in org.jboss.errai.cdi.server.events with parameters of type MessageBus
ConversationalEventWrapper(Object eventObject, Class eventType, Set<String> qualifierStrings, MessageBus bus)
           
DynamicEventObserverMethod(EventRoutingTable eventRoutingTable, MessageBus bus, Class<?> eventType, Set<String> annotations)
           
EventDispatcher(javax.enterprise.inject.spi.BeanManager beanManager, EventRoutingTable eventRoutingTable, MessageBus messageBus, Set<String> observedEvents, Map<String,Annotation> qualifiers, javax.enterprise.inject.spi.AfterBeanDiscovery afterBeanDiscovery)
           
ShutdownEventObserver(TypeRegistry managedTypes, MessageBus bus)
           
 

Uses of MessageBus in org.jboss.errai.ioc.support.bus.client
 

Methods in org.jboss.errai.ioc.support.bus.client with parameters of type MessageBus
static
<U> ErraiMessageSender<U>
ErraiMessageSender.of(String toSubject, String replyTo, MessageBus messageBus)
           
 

Uses of MessageBus in org.jboss.errai.otec.client
 

Methods in org.jboss.errai.otec.client with parameters of type MessageBus
static void ClientOTBusService.startOTService(MessageBus messageBus, OTEngine engine)
           
 

Constructors in org.jboss.errai.otec.client with parameters of type MessageBus
ClientOTPeerImpl(MessageBus bus, OTEngine engine)
           
 

Uses of MessageBus in org.jboss.errai.otec.server
 

Methods in org.jboss.errai.otec.server with parameters of type MessageBus
static void ServerOTBusService.startOTService(MessageBus messageBus, OTEngine engine)
           
 

Constructors in org.jboss.errai.otec.server with parameters of type MessageBus
ServerOTPeerImpl(String remoteEngineId, MessageBus bus)
           
 

Uses of MessageBus in org.jboss.errai.tools.monitoring
 

Classes in org.jboss.errai.tools.monitoring that implement MessageBus
 class ClientBusProxyImpl
           
 

Methods in org.jboss.errai.tools.monitoring with parameters of type MessageBus
 void MonitorController.attach(MessageBus bus)
           
 

Constructors in org.jboss.errai.tools.monitoring with parameters of type MessageBus
Bootstrapper(ActivityProcessor processor, MessageBus bus)
           
ClientBusProxyImpl(MessageBus serverBus)
           
MainMonitorGUI(Dataservice service, MessageBus serverBus)
           
MonitorExtension(MessageBus bus)
           
ServerMonitorPanel(MainMonitorGUI gui, MessageBus bus, String busId)
           
 

Uses of MessageBus in org.jboss.errai.ui.cordova
 

Classes in org.jboss.errai.ui.cordova that implement MessageBus
 class LocationAwareClientMessageBus
          Overrides the standard ClientMessageBus implementation that throws exception when the user did not specify the endpoint
 


Errai 3.0.1-SNAPSHOT

Copyright © 2013-2014 JBoss, a division of Red Hat. All Rights Reserved.