public interface IAsyncFilter<T>
Modifier and Type | Interface and Description |
---|---|
static class |
IAsyncFilter.AlwaysFilter
A filter that always returns true.
|
static class |
IAsyncFilter.NeverFilter
A filter that always returns false.
|
Modifier and Type | Field and Description |
---|---|
static IAsyncFilter<java.lang.Object> |
ALWAYS
A filter that always returns true.
|
static IAsyncFilter<java.lang.Object> |
NEVER
A filter that always returns false.
|
Modifier and Type | Method and Description |
---|---|
IFuture<java.lang.Boolean> |
filter(T obj)
Test if an object passes the filter.
|
static final IAsyncFilter<java.lang.Object> ALWAYS
static final IAsyncFilter<java.lang.Object> NEVER