__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from abc import abstractmethod
from logging import Logger
from typing import Generic, TypeVar
from .amqp_object import AMQPObject, Method as AMQPMethod
from .spec import BasicProperties
_M = TypeVar("_M", bound=AMQPMethod)
LOGGER: Logger
class Frame(AMQPObject):
frame_type: int
channel_number: int
def __init__(self, frame_type: int, channel_number: int) -> None: ...
@abstractmethod
def marshal(self) -> bytes: ...
class Method(Frame, Generic[_M]):
method: _M
def __init__(self, channel_number: int, method: _M) -> None: ...
def marshal(self) -> bytes: ...
class Header(Frame):
body_size: int
properties: BasicProperties
def __init__(self, channel_number: int, body_size: int, props: BasicProperties) -> None: ...
def marshal(self) -> bytes: ...
class Body(Frame):
fragment: bytes
def __init__(self, channel_number: int, fragment: bytes) -> None: ...
def marshal(self) -> bytes: ...
class Heartbeat(Frame):
def __init__(self) -> None: ...
def marshal(self) -> bytes: ...
class ProtocolHeader(AMQPObject):
frame_type: int
major: int
minor: int
revision: int
def __init__(self, major: int | None = None, minor: int | None = None, revision: int | None = None) -> None: ...
def marshal(self) -> bytes: ...
def decode_frame(data_in: bytes) -> tuple[int, Frame | None]: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| adapters | Folder | 0755 |
|
|
| __init__.pyi | File | 609 B | 0644 |
|
| amqp_object.pyi | File | 558 B | 0644 |
|
| callback.pyi | File | 893 B | 0644 |
|
| channel.pyi | File | 6.13 KB | 0644 |
|
| compat.pyi | File | 1.49 KB | 0644 |
|
| connection.pyi | File | 6.8 KB | 0644 |
|
| credentials.pyi | File | 1.23 KB | 0644 |
|
| data.pyi | File | 745 B | 0644 |
|
| delivery_mode.pyi | File | 86 B | 0644 |
|
| diagnostic_utils.pyi | File | 48 B | 0644 |
|
| exceptions.pyi | File | 2.21 KB | 0644 |
|
| exchange_type.pyi | File | 137 B | 0644 |
|
| frame.pyi | File | 1.34 KB | 0644 |
|
| heartbeat.pyi | File | 317 B | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| spec.pyi | File | 27.87 KB | 0644 |
|
| tcp_socket_opts.pyi | File | 152 B | 0644 |
|
| validators.pyi | File | 217 B | 0644 |
|