mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
parent
3e202d6ac7
commit
0c86590f75
@ -102,7 +102,7 @@ namespace Observatory.Framework
|
|||||||
/// <returns>A boolean; True iff the state provided represents a batch-mode read.</returns>
|
/// <returns>A boolean; True iff the state provided represents a batch-mode read.</returns>
|
||||||
public static bool IsBatchRead(LogMonitorState state)
|
public static bool IsBatchRead(LogMonitorState state)
|
||||||
{
|
{
|
||||||
return (state & (LogMonitorState.Batch | LogMonitorState.PreRead)) > 0;
|
return state.HasFlag(LogMonitorState.Batch) || state.HasFlag(LogMonitorState.PreRead);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user