Uses of Interface
com.jme3.network.Filter
Packages that use Filter
Package
Description
-
Uses of Filter in com.jme3.network
Methods in com.jme3.network that return FilterModifier and TypeMethodDescriptionstatic <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(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> 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(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 FilterModifier and TypeMethodDescriptionvoidServer.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.voidServer.broadcast(Filter<? super HostedConnection> filter, Message message) Sends the specified message to all connected clients that match the filter.static <T> Filter<T> 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 FilterMethods in com.jme3.network.base with parameters of type FilterModifier and TypeMethodDescriptionvoidDefaultServer.broadcast(int channel, Filter<? super HostedConnection> filter, Message message) voidDefaultServer.broadcast(Filter<? super HostedConnection> filter, Message message) voidKernelAdapter.broadcast(Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, boolean copy) Constructors in com.jme3.network.base with parameters of type Filter -
Uses of Filter in com.jme3.network.kernel
Methods in com.jme3.network.kernel with parameters of type FilterModifier and TypeMethodDescriptionvoidKernel.broadcast(Filter<? super Endpoint> filter, 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 FilterModifier and TypeMethodDescriptionvoidSelectorKernel.broadcast(Filter<? super Endpoint> filter, 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 FilterModifier and TypeMethodDescriptionvoidUdpKernel.broadcast(Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, boolean copy) Dispatches the data to all endpoints managed by the kernel.