Package reactor.bus.selector
Interface Selector<T>
-
@Deprecated public interface Selector<T>Deprecated.Here for compatibility only. Do not use directlyA Selector is a wrapper around an arbitrary object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.ObjectgetObject()Deprecated.Get the object being used for comparisons and equals checks.booleanmatches(T key)Deprecated.Indicates whether this Selector matches thekey.
-
-
-
Method Detail
-
getObject
java.lang.Object getObject()
Deprecated.Get the object being used for comparisons and equals checks.- Returns:
- The internal object.
-
matches
boolean matches(T key)
Deprecated.Indicates whether this Selector matches thekey.- Parameters:
key- The key to match- Returns:
trueif there's a match, otherwisefalse.
-
-