| EventBusTEvent, TClassifier, TSubscriberIsSubClassification Method |
Determines whether a specified classifier, child, is a subclass of another classifier, parent.
Namespace:
Akka.Event
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax protected abstract bool IsSubClassification(
TClassifier parent,
TClassifier child
)
abstract IsSubClassification :
parent : 'TClassifier *
child : 'TClassifier -> bool
Parameters
- parent
- Type: TClassifier
The potential parent of the classifier that is being checked. - child
- Type: TClassifier
The classifier that is being checked.
Return Value
Type:
Booleantrue if the
child classifier is a subclass of
parent; otherwise
false.
See Also