predicate method
Implementation
bool predicate(ActorContext ctx, Object? msg) {
final correlationId = ctx.correlationId;
if (correlationId == null) {
return false;
}
return _pendingProtocols.containsKey(correlationId);
}
bool predicate(ActorContext ctx, Object? msg) {
final correlationId = ctx.correlationId;
if (correlationId == null) {
return false;
}
return _pendingProtocols.containsKey(correlationId);
}