Uses of Interface
com.veraxsystems.icmp.ping.PingResponseHandler

Packages that use PingResponseHandler
com.veraxsystems.icmp.ping Main classes for handle ping requests and response. 
com.veraxsystems.icmp.ping.handlers Classes handling ICMP packet queues. 
 

Uses of PingResponseHandler in com.veraxsystems.icmp.ping
 

Methods in com.veraxsystems.icmp.ping with parameters of type PingResponseHandler
static int Ping.echo(java.net.InetAddress address, byte[] dataToSend, int timeoutVal, PingResponseHandler handler)
          Send ICMP echo request.
static int Ping.echo(java.net.InetAddress address, int dataLength, int timeoutVal, PingResponseHandler handler)
          Send default ICMP echo request.
 

Uses of PingResponseHandler in com.veraxsystems.icmp.ping.handlers
 

Classes in com.veraxsystems.icmp.ping.handlers that implement PingResponseHandler
 class BlockingPing
          The implementation of PingResponseHandler for synchronous processing of ICMP EchoRequests using asynchronous Ping.echo method.
 

Methods in com.veraxsystems.icmp.ping.handlers that return PingResponseHandler
 PingResponseHandler PingRequest.getHandler()
          Get result handler object that is executed when ICMP result is obtained
 

Constructors in com.veraxsystems.icmp.ping.handlers with parameters of type PingResponseHandler
PingRequest(java.net.InetAddress addressVal, byte[] dataVal, int dataLengthVal, long timeoutVal, int messageIdVal, PingResponseHandler handlerVal)
          Constructor initializes all class attributes.