Uses of Interface
com.jme3.network.ErrorListener

Packages that use ErrorListener
com.jme3.network The network package contains the public API for the jME3 SpiderMonkey networking module. 
com.jme3.network.base The base package contains the default implementations for the Client and Server interfaces from the public API. 
 

Uses of ErrorListener in com.jme3.network
 

Methods in com.jme3.network with parameters of type ErrorListener
 void Client.addErrorListener(ErrorListener<? super Client> listener)
          Adds a listener that will be notified when any connection errors occur.
 void Client.removeErrorListener(ErrorListener<? super Client> listener)
          Removes a previously registered error listener.
 

Uses of ErrorListener in com.jme3.network.base
 

Classes in com.jme3.network.base that implement ErrorListener
protected  class DefaultClient.Redispatch
           
 

Methods in com.jme3.network.base with parameters of type ErrorListener
 void DefaultClient.addErrorListener(ErrorListener<? super Client> listener)
           
 void DefaultClient.removeErrorListener(ErrorListener<? super Client> listener)
           
 

Constructors in com.jme3.network.base with parameters of type ErrorListener
ConnectorAdapter(Connector connector, MessageListener<java.lang.Object> dispatcher, ErrorListener<java.lang.Object> errorHandler, boolean reliable)