Interface IEventFilter<T>
Represents an event filter.
Namespace: Apache.Ignite.Core.Events
Assembly: Apache.Ignite.Core.dll
Syntax
public interface IEventFilter<in T>
    where T : IEventType Parameters
| Name | Description | 
|---|---|
| T | Event type. | 
Methods
Invoke(T)
Determines whether specified event passes this filter.
Declaration
bool Invoke(T evt)Parameters
| Type | Name | Description | 
|---|---|---|
| T | evt | Event. | 
Returns
| Type | Description | 
|---|---|
| System.Boolean | Value indicating whether specified event passes this filter. |