Skip to content

Commit 4cff9d7

Browse files
authored
Made classes enum.IntEnums where appropriate. (#1053)
1 parent 01c60cd commit 4cff9d7

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

aiokafka/client.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import logging
44
import random
55
import time
6+
from enum import IntEnum
67

78
import aiokafka.errors as Errors
89
from aiokafka import __version__
@@ -40,12 +41,12 @@
4041
log = logging.getLogger("aiokafka")
4142

4243

43-
class ConnectionGroup:
44+
class ConnectionGroup(IntEnum):
4445
DEFAULT = 0
4546
COORDINATION = 1
4647

4748

48-
class CoordinationType:
49+
class CoordinationType(IntEnum):
4950
GROUP = 0
5051
TRANSACTION = 1
5152

aiokafka/conn.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import uuid
1616
import warnings
1717
import weakref
18+
from enum import IntEnum
1819

1920
import async_timeout
2021

@@ -45,7 +46,7 @@
4546
SASL_QOP_AUTH = 1
4647

4748

48-
class CloseReason:
49+
class CloseReason(IntEnum):
4950
CONNECTION_BROKEN = 0
5051
CONNECTION_TIMEOUT = 1
5152
OUT_OF_SYNC = 2

aiokafka/metrics/stats/percentiles.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
from enum import IntEnum
2+
13
from aiokafka.metrics.compound_stat import AbstractCompoundStat, NamedMeasurable
24
from aiokafka.metrics.measurable import AnonMeasurable
35

46
from .histogram import Histogram
57
from .sampled_stat import AbstractSampledStat
68

79

8-
class BucketSizing:
10+
class BucketSizing(IntEnum):
911
CONSTANT = 0
1012
LINEAR = 1
1113

aiokafka/producer/transaction_manager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from collections import defaultdict, deque, namedtuple
2-
from enum import Enum
2+
from enum import Enum, IntEnum
33

44
from aiokafka.structs import TopicPartition
55
from aiokafka.util import create_future
@@ -16,7 +16,7 @@ class SubscriptionType(Enum):
1616
USER_ASSIGNED = 4
1717

1818

19-
class TransactionResult:
19+
class TransactionResult(IntEnum):
2020
ABORT = 0
2121
COMMIT = 1
2222

0 commit comments

Comments
 (0)