Beispiel #1
0
 public bool Accepts(LogEntry logEntry) => AddressFilter.Accepts(logEntry.LoggersAddress) && TopicsFilter.Accepts(logEntry);
Beispiel #2
0
 public bool Accepts(ref LogEntryStructRef logEntry) => AddressFilter.Accepts(ref logEntry.LoggersAddress) && TopicsFilter.Accepts(ref logEntry);
Beispiel #3
0
 public bool Accepts(LogEntry logEntry)
 {
     return(_addressFilter.Accepts(logEntry.LoggersAddress) && _topicsFilter.Accepts(logEntry));
 }