Uses of Interface
com.jme3.network.Filter

Packages that use Filter
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.kernel The kernel package is the heart of the JME networking module and controls the routing and dispatch of message data over different transport implementations. 
com.jme3.network.kernel.tcp   
com.jme3.network.kernel.udp   
 

Uses of Filter in com.jme3.network
 

Methods in com.jme3.network that return Filter
static
<T> Filter<T>
Filters.equalTo(T value)
          Creates a filter that returns true for inputs that are .equals() equivalent to the specified value.
static
<T> Filter<T>
Filters.in(java.util.Collection<? extends T> collection)
          Creates a filter that returns true for any value in the specified collection and false for all other cases.
static
<T> Filter<T>
Filters.in(T... values)
          Creates a filter that returns true for any value in the specified list of values and false for all other cases.
static
<T> Filter<T>
Filters.not(Filter<T> f)
          Creates a filter that returns true when the specified delegate filter returns false, and vice versa.
static
<T> Filter<T>
Filters.notEqualTo(T value)
          Creates a filter that returns true for inputs that are NOT .equals() equivalent to the specified value.
static
<T> Filter<T>
Filters.notIn(java.util.Collection<? extends T> collection)
          Creates a filter that returns true for any value NOT in the specified collection and false for all other cases.
static
<T> Filter<T>
Filters.notIn(T... values)
          Creates a filter that returns true for any value NOT in the specified list of values and false for all other cases.
 

Methods in com.jme3.network with parameters of type Filter
 void Server.broadcast(Filter<? super HostedConnection> filter, Message message)
          Sends the specified message to all connected clients that match the filter.
 void Server.broadcast(int channel, Filter<? super HostedConnection> filter, Message message)
          Sends the specified message over the specified alternate channel to all connected clients that match the filter.
static
<T> Filter<T>
Filters.not(Filter<T> f)
          Creates a filter that returns true when the specified delegate filter returns false, and vice versa.
 

Uses of Filter in com.jme3.network.base
 

Classes in com.jme3.network.base that implement Filter
protected  class DefaultServer.FilterAdapter
           
 

Methods in com.jme3.network.base with parameters of type Filter
 void KernelAdapter.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
           
 void DefaultServer.broadcast(Filter<? super HostedConnection> filter, Message message)
           
 void DefaultServer.broadcast(int channel, Filter<? super HostedConnection> filter, Message message)
           
 

Constructors in com.jme3.network.base with parameters of type Filter
DefaultServer.FilterAdapter(Filter<? super HostedConnection> delegate)
           
 

Uses of Filter in com.jme3.network.kernel
 

Methods in com.jme3.network.kernel with parameters of type Filter
 void Kernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
          Dispatches the data to all endpoints managed by the kernel that match the specified endpoint filter..
 

Uses of Filter in com.jme3.network.kernel.tcp
 

Methods in com.jme3.network.kernel.tcp with parameters of type Filter
 void SelectorKernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
           
 

Uses of Filter in com.jme3.network.kernel.udp
 

Methods in com.jme3.network.kernel.udp with parameters of type Filter
 void UdpKernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
          Dispatches the data to all endpoints managed by the kernel.