Package adams.flow.core.actorfilter
Interface ActorFilter
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AcceptAll
,ExactMatch
,Invert
,Match
,SuperclassOrInterface
public interface ActorFilter extends Serializable
Interface for filtering actors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(Actor actor)
Returns whether the actor should be kept.
-
-
-
Method Detail
-
accept
boolean accept(Actor actor)
Returns whether the actor should be kept.- Parameters:
actor
- the actor to check- Returns:
- true if to keep
-
-