Uses of Interface
com.jme3.network.Server

Packages that use Server
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. 
com.jme3.network.rmi   
 

Uses of Server in com.jme3.network
 

Methods in com.jme3.network that return Server
static Server Network.createServer(int port)
          Creates a Server that will utilize both reliable and fast transports to communicate with clients.
static Server Network.createServer(int tcpPort, int udpPort)
          Creates a Server that will utilize both reliable and fast transports to communicate with clients.
static Server Network.createServer(java.lang.String gameName, int version, int tcpPort, int udpPort)
          Creates a named and versioned Server that will utilize both reliable and fast transports to communicate with clients.
 Server HostedConnection.getServer()
          Returns the Server instance that is hosting this connection.
 

Methods in com.jme3.network with parameters of type Server
 void ConnectionListener.connectionAdded(Server server, HostedConnection conn)
          Called when a connection has been added to the specified server and is fully setup.
 void ConnectionListener.connectionRemoved(Server server, HostedConnection conn)
          Called when a connection has been removed from the specified server.
 

Uses of Server in com.jme3.network.base
 

Classes in com.jme3.network.base that implement Server
 class DefaultServer
          A default implementation of the Server interface that delegates its network connectivity to kernel.Kernel.
 

Methods in com.jme3.network.base that return Server
 Server DefaultServer.Connection.getServer()
           
 

Uses of Server in com.jme3.network.rmi
 

Methods in com.jme3.network.rmi with parameters of type Server
 void ObjectStore.ServerEventHandler.connectionAdded(Server server, HostedConnection conn)
           
 void ObjectStore.ServerEventHandler.connectionRemoved(Server server, HostedConnection conn)
           
 

Constructors in com.jme3.network.rmi with parameters of type Server
ObjectStore(Server server)