com.vhosting.netconf.transport
Interface NetconfCatcherListener


public interface NetconfCatcherListener

This listener is used by NetconfCatcher to allow the management of events relating to the connection-level transport protocol. It is also the entry point for sending and receiving Netconf messages. It can be said that this interface is also the entry point of a Netconf application.

Version:
1.00, 02/11/2010
Author:
Giuseppe Palmeri

Method Summary
 void processReadyForRpcRequests(RpcHandler rpcHandler)
          The method is called when is finally an object of type RpcHandler that allows the sending and receiving Netconf messages.
 void processTransportEvents(NetconfTransportEvent event)
          Through the implementation of this method can handle any kind of event that can be triggered during the operation of the transport protocol and the netconf protocol when sending and receiving messages.
 

Method Detail

processTransportEvents

void processTransportEvents(NetconfTransportEvent event)
Through the implementation of this method can handle any kind of event that can be triggered during the operation of the transport protocol and the netconf protocol when sending and receiving messages.

Parameters:
event - The Netconf transport event.
See Also:
NetconfTransportEvent

processReadyForRpcRequests

void processReadyForRpcRequests(RpcHandler rpcHandler)
The method is called when is finally an object of type RpcHandler that allows the sending and receiving Netconf messages.

There are not other ways to get to an object of this type.

Parameters:
rpcHandler - The Rpc handler.