AsyncAPIBatchPullStreamSubscriber
faststream.nats.subscriber.asyncapi.AsyncAPIBatchPullStreamSubscriber #
AsyncAPIBatchPullStreamSubscriber(*, subject, config, stream, pull_sub, extra_options, no_ack, no_reply, retry, broker_dependencies, broker_middlewares, title_, description_, include_in_schema)
Bases: AsyncAPISubscriber
, BatchPullStreamSubscriber
Batch-message Pull consumer with AsyncAPI methods.
Source code in faststream/nats/subscriber/usecase.py
setup #
setup(*, connection, logger, producer, graceful_timeout, extra_context, broker_parser, broker_decoder, apply_types, is_validate, _get_dependant, _call_decorators)
Source code in faststream/nats/subscriber/usecase.py
add_prefix #
Include Subscriber in router.
Source code in faststream/nats/subscriber/usecase.py
schema #
Returns the schema of the API operation as a dictionary of channel names and channel objects.
add_middleware #
get_log_context #
Log context factory using in self.consume
scope.
Source code in faststream/nats/subscriber/usecase.py
start async
#
Create NATS subscription and start consume tasks.
Source code in faststream/nats/subscriber/usecase.py
close async
#
Clean up handler subscription, cancel consume task in graceful mode.
consume async
#
Consume a message asynchronously.
Source code in faststream/broker/subscriber/usecase.py
process_message async
#
Execute all message processing stages.
Source code in faststream/broker/subscriber/usecase.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 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 |
|
get_one async
#
Source code in faststream/nats/subscriber/usecase.py
add_call #
Source code in faststream/broker/subscriber/usecase.py
get_name #
get_description #
Returns the description of the handler.
get_schema #
Source code in faststream/nats/subscriber/asyncapi.py
get_payloads #
Get the payloads of the handler.
Source code in faststream/broker/subscriber/usecase.py
build_log_context staticmethod
#
Static method to build log context out of self.consume
scope.
Source code in faststream/nats/subscriber/usecase.py
get_routing_hash staticmethod
#
Get handler hash by outer data.
Using to find handler in broker.handlers
dictionary.