File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 3
3
import logging
4
4
import random
5
5
import time
6
+ from enum import IntEnum
6
7
7
8
import aiokafka .errors as Errors
8
9
from aiokafka import __version__
40
41
log = logging .getLogger ("aiokafka" )
41
42
42
43
43
- class ConnectionGroup :
44
+ class ConnectionGroup ( IntEnum ) :
44
45
DEFAULT = 0
45
46
COORDINATION = 1
46
47
47
48
48
- class CoordinationType :
49
+ class CoordinationType ( IntEnum ) :
49
50
GROUP = 0
50
51
TRANSACTION = 1
51
52
Original file line number Diff line number Diff line change 15
15
import uuid
16
16
import warnings
17
17
import weakref
18
+ from enum import IntEnum
18
19
19
20
import async_timeout
20
21
45
46
SASL_QOP_AUTH = 1
46
47
47
48
48
- class CloseReason :
49
+ class CloseReason ( IntEnum ) :
49
50
CONNECTION_BROKEN = 0
50
51
CONNECTION_TIMEOUT = 1
51
52
OUT_OF_SYNC = 2
Original file line number Diff line number Diff line change
1
+ from enum import IntEnum
2
+
1
3
from aiokafka .metrics .compound_stat import AbstractCompoundStat , NamedMeasurable
2
4
from aiokafka .metrics .measurable import AnonMeasurable
3
5
4
6
from .histogram import Histogram
5
7
from .sampled_stat import AbstractSampledStat
6
8
7
9
8
- class BucketSizing :
10
+ class BucketSizing ( IntEnum ) :
9
11
CONSTANT = 0
10
12
LINEAR = 1
11
13
Original file line number Diff line number Diff line change 1
1
from collections import defaultdict , deque , namedtuple
2
- from enum import Enum
2
+ from enum import Enum , IntEnum
3
3
4
4
from aiokafka .structs import TopicPartition
5
5
from aiokafka .util import create_future
@@ -16,7 +16,7 @@ class SubscriptionType(Enum):
16
16
USER_ASSIGNED = 4
17
17
18
18
19
- class TransactionResult :
19
+ class TransactionResult ( IntEnum ) :
20
20
ABORT = 0
21
21
COMMIT = 1
22
22
You can’t perform that action at this time.
0 commit comments