LeviLamina
Loading...
Searching...
No Matches
DispatcherEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7enum class DispatcherEvent : int {
8 // bitfield representation
9 Read = 1 << 0,
10 Write = 1 << 1,
11 Connect = 1 << 2,
12 Close = 1 << 3,
13 Accept = 1 << 4,
14};
15
16}
Definition Read.h:6
Definition Write.h:6