Package org.apache.cxf.transport
Interface Observable
- All Known Subinterfaces:
Conduit,Destination,MultiplexDestination
- All Known Implementing Classes:
AbstractConduit,AbstractDestination,AbstractDestination.AbstractBackChannelConduit,AbstractHTTPDestination,AbstractHTTPDestination.BackChannelConduit,AbstractMultiplexDestination,AbstractObservable,AhcWebSocketConduit,AsyncHTTPConduit,AsyncHTTPConduit,AtmosphereWebSocketJettyDestination,AtmosphereWebSocketServletDestination,AtmosphereWebSocketUndertowDestination,CorbaConduit,CorbaDestination,CorbaServerConduit,HttpClientHTTPConduit,HTTPConduit,JAXWSHttpSpiDestination,Jetty11WebSocketDestination,JettyHTTPDestination,JMSConduit,JMSDestination,LocalConduit,LocalDestination,NettyHttpConduit,NettyHttpDestination,ServletDestination,UDPConduit,UDPDestination,UndertowHTTPDestination,UndertowWebSocketDestination,URLConnectionHTTPConduit
public interface Observable
Allows Observers to register for notification on incoming messages.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the message observer for incoming messagesvoidsetMessageObserver(MessageObserver observer) Register a message observer for incoming messages.
-
Method Details
-
setMessageObserver
Register a message observer for incoming messages.- Parameters:
observer- the observer to notify on receipt of incoming
-
getMessageObserver
MessageObserver getMessageObserver()Retrieves the message observer for incoming messages- Returns:
- the MessageObserver for incoming messages
-