RedisBroker
faststream.redis.RedisBroker #
RedisBroker(url='redis://localhost:6379', *, host=EMPTY, port=EMPTY, db=EMPTY, connection_class=EMPTY, client_name=None, health_check_interval=0, max_connections=None, socket_timeout=None, socket_connect_timeout=None, socket_read_size=65536, socket_keepalive=False, socket_keepalive_options=None, socket_type=0, retry_on_timeout=False, encoding='utf-8', encoding_errors='strict', decode_responses=False, parser_class=DefaultParser, encoder_class=Encoder, graceful_timeout=15.0, decoder=None, parser=None, dependencies=(), middlewares=(), security=None, asyncapi_url=None, protocol=None, protocol_version='custom', description=None, tags=None, logger=EMPTY, log_level=INFO, log_fmt=None, apply_types=True, validate=True, _get_dependant=None, _call_decorators=())
Bases: RedisRegistrator
, RedisLoggingBroker
Redis broker.
Source code in faststream/redis/broker/broker.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
setup #
Prepare all Broker entities to startup.
add_middleware #
Append BrokerMiddleware to the end of middlewares list.
Current middleware will be used as a most inner of already existed ones.
Source code in faststream/broker/core/abc.py
subscriber #
subscriber(channel=None, *, list=None, stream=None, dependencies=(), parser=None, decoder=None, middlewares=(), filter=default_filter, retry=False, no_ack=False, no_reply=False, title=None, description=None, include_in_schema=True)
Source code in faststream/redis/broker/registrator.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
publisher #
publisher(channel=None, *, list=None, stream=None, headers=None, reply_to='', middlewares=(), title=None, description=None, schema=None, include_in_schema=True)
Creates long-living and AsyncAPI-documented publisher object.
You can use it as a handler decorator (handler should be decorated by @broker.subscriber(...)
too) - @broker.publisher(...)
. In such case publisher will publish your handler return value.
Or you can create a publisher object to call it lately - broker.publisher(...).publish(...)
.
Source code in faststream/redis/broker/registrator.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
include_router #
Includes a router in the current object.
Source code in faststream/broker/core/abc.py
include_routers #
get_fmt #
setup_subscriber #
Setup the Subscriber to prepare it to starting.
Source code in faststream/broker/core/usecase.py
setup_publisher #
Setup the Publisher to prepare it to starting.
Source code in faststream/broker/core/usecase.py
close async
#
Closes the object.
Source code in faststream/broker/core/usecase.py
connect async
#
Connect to the Redis server.
Source code in faststream/redis/broker/broker.py
start async
#
publish async
#
publish(message=None, channel=None, *, reply_to='', headers=None, correlation_id=None, list=None, stream=None, maxlen=None, rpc=False, rpc_timeout=30.0, raise_timeout=False)
Publish message directly.
This method allows you to publish message in not AsyncAPI-documented way. You can use it in another frameworks applications or to publish messages from time to time.
Please, use @broker.publisher(...)
or broker.publisher(...).publish(...)
instead in a regular way.
Source code in faststream/redis/broker/broker.py
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
|
request async
#
request(message, channel=None, *, list=None, stream=None, maxlen=None, correlation_id=None, headers=None, timeout=30.0)
Source code in faststream/redis/broker/broker.py
publish_batch async
#
Publish multiple messages to Redis List by one request.