Interface IFilter
Provide for "pluggable" conditional behavior.
Namespace: Tangosol.Util
Assembly: Coherence.dll
Syntax
public interface IFilter
Methods
Evaluate(object)
Apply the test to the object.
Declaration
bool Evaluate(object o)
Parameters
Type | Name | Description |
---|---|---|
object | o | An object to which the test is applied. |
Returns
Type | Description |
---|---|
bool | true if the test passes, false otherwise. |