-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
195 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
amqp_client_python/exceptions/publish_timeout_exception.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from .timeout_exception import TimeoutException | ||
|
||
|
||
class PublishTimeoutException(TimeoutException): | ||
message: str = None | ||
description: str = None | ||
|
||
def __init__(self, message, description="") -> None: | ||
self.message = message | ||
self.description = description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from .timeout_exception import TimeoutException | ||
|
||
class ResponseTimeoutException(TimeoutException): | ||
message: str = None | ||
description: str = None | ||
|
||
def __init__(self, message, description="") -> None: | ||
self.message = message | ||
self.description = description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
from .async_eventbus_rabbitmq import AsyncEventbusRabbitMQ | ||
from .async_connection_factory import AsyncConnectionFactoryRabbitMQ | ||
from .async_connection import AsyncConnection | ||
from .async_channel_factory import AsyncChannelFactoryRabbitMQ | ||
from .async_channel import AsyncChannel | ||
from .eventbus_rabbitmq import EventbusRabbitMQ | ||
from .connection_factory_rabbitmq import ConnectionFactoryRabbitMQ | ||
from .connection_rabbitmq import ConnectionRabbitMQ | ||
from .channel_factory_rabbitmq import ChannelFactoryRabbitMQ | ||
from .channel_rabbitmq import ChannelRabbitMQ | ||
from .eventbus_rabbitmq import EventbusRabbitMQ | ||
from .async_eventbus_rabbitmq import AsyncEventbusRabbitMQ |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.