Observable
class¶
Bases: ABC
, Generic[_OutT]
A base class that defines a lazy push-style notification mechanism for streaming data to subscribers.
Notes:
-
The
Observable
class serves as a foundation for implementing various observable types with different dispatch logic and strategies, encapsulating the essential protocols and workflows for streaming data to subscribers in a reactive manner. -
This class is parameterized by the type of value that will be streamed through the observable. This type parameter is covariant, allowing it to be either the specified type or any subtype.
-
The
subscribe()
method can be utilized as a regular function, a decorator, or a context manager. When used as a regular function, it automatically creates and subscribes an observer with the specified callbacks. As a decorator, it creates and subscribes an observer, using the decorated callback as the next callback. Finally, when employed as a context manager with thewith
statement, it enables a step-by-step definition of the observer's callbacks prior to its subscription, which occurs immediately after exiting the context. -
This class has been designed with thread safety in mind. All of its methods synchronize access to mutable attributes to prevent race conditions when managing observables in a multi-threaded environment.
Source code in pyventus/reactive/observables/observable.py
25 26 27 28 29 30 31 32 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 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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 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 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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 |
|
Classes¶
ObservableSubCtx
¶
Bases: Generic[_SubCtxO, _SubCtxT]
, SubscriptionContext[_SubCtxO, Subscriber[_SubCtxT]]
A context manager for Observable subscriptions.
Notes:
-
This class establishes a context block for a step-by-step definition of the observer's callbacks prior to the actual subscription, which occurs immediately upon exiting the context block.
-
This class can be used as either a decorator or a context manager. When used as a decorator, it creates and subscribes an observer, using the decorated callback as the next callback. When employed as a context manager with the
with
statement, it enables a step-by-step definition of the observer's callbacks prior to its subscription, which occurs immediately after exiting the context. -
This subscription context can be
stateful
, retaining references to theobservable
andsubscriber
, orstateless
, which clears the context upon exiting the subscription block. -
This class is not intended to be subclassed or manually instantiated.
Source code in pyventus/reactive/observables/observable.py
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 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 |
|
Functions¶
unpack
¶
Unpack and retrieve the source object and its associated subscriber.
This method returns a tuple containing the source object and its subscriber, while also handling the cleanup of associated resources to prevent memory leaks. After retrieving the objects, it deletes internal references to the source and subscriber to ensure they are no longer retained.
RETURNS | DESCRIPTION |
---|---|
tuple[_SourceType | None, _SubscriberType | None]
|
A tuple of the form (source, subscriber). Both may be |
RAISES | DESCRIPTION |
---|---|
PyventusException
|
If this method is called before or during the subscription context, indicating that the resources are not yet available for unpacking. |
Source code in pyventus/core/subscriptions/subscription_context.py
__enter__
¶
Enter the subscription context block.
This method facilitates the progressive definition of an object that will later be subscribed to the specified source.
RETURNS | DESCRIPTION |
---|---|
Self
|
The subscription context manager. |
Source code in pyventus/core/subscriptions/subscription_context.py
__exit__
¶
__exit__(exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None) -> None
Exit the subscription context block.
This method subscribes the defined object to the specified source, and performs any necessary cleanup.
PARAMETER | DESCRIPTION |
---|---|
exc_type
|
The type of the raised exception, if any.
TYPE:
|
exc_val
|
The raised exception object, if any.
TYPE:
|
exc_tb
|
The traceback information, if any.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None. |
Source code in pyventus/core/subscriptions/subscription_context.py
__init__
¶
Initialize an instance of ObservableSubCtx
.
PARAMETER | DESCRIPTION |
---|---|
observable
|
The observable to which the observer will be subscribed.
TYPE:
|
force_async
|
Determines whether to force all callbacks to run asynchronously.
TYPE:
|
is_stateful
|
A flag indicating whether the context preserves its state (
TYPE:
|
Source code in pyventus/reactive/observables/observable.py
on_next
¶
Set the observer's next callback.
PARAMETER | DESCRIPTION |
---|---|
callback
|
The callback to be executed when the observable emits a new value.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
NextCallbackType[_SubCtxT]
|
The decorated callback. |
Source code in pyventus/reactive/observables/observable.py
on_error
¶
Set the observer's error callback.
PARAMETER | DESCRIPTION |
---|---|
callback
|
The callback to be executed when the observable encounters an error.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
ErrorCallbackType
|
The decorated callback. |
Source code in pyventus/reactive/observables/observable.py
on_complete
¶
Set the observer's complete callback.
PARAMETER | DESCRIPTION |
---|---|
callback
|
The callback that will be executed when the observable has completed emitting values.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
CompleteCallbackType
|
The decorated callback. |
Source code in pyventus/reactive/observables/observable.py
__call__
¶
__call__(callback: NextCallbackType[_SubCtxT]) -> tuple[NextCallbackType[_SubCtxT], ObservableSubCtx[_SubCtxO, _SubCtxT]] | NextCallbackType[_SubCtxT]
Subscribe the decorated callback as the observer's next
function for the specified observable.
PARAMETER | DESCRIPTION |
---|---|
callback
|
The callback to be executed when the observable emits a new value.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tuple[NextCallbackType[_SubCtxT], ObservableSubCtx[_SubCtxO, _SubCtxT]] | NextCallbackType[_SubCtxT]
|
A tuple containing the decorated callback and its subscription context if the context is |
Source code in pyventus/reactive/observables/observable.py
Completed
¶
Functions¶
get_valid_subscriber
staticmethod
¶
get_valid_subscriber(subscriber: Subscriber[_OutT]) -> Subscriber[_OutT]
Validate and return the specified subscriber.
PARAMETER | DESCRIPTION |
---|---|
subscriber
|
The subscriber to validate.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Subscriber[_OutT]
|
The validated subscriber. |
RAISES | DESCRIPTION |
---|---|
PyventusException
|
If the subscriber is not an instance of |
Source code in pyventus/reactive/observables/observable.py
__init__
¶
Initialize an instance of Observable
.
PARAMETER | DESCRIPTION |
---|---|
debug
|
Specifies the debug mode for the logger. If
TYPE:
|
Source code in pyventus/reactive/observables/observable.py
get_subscribers
¶
get_subscribers() -> set[Subscriber[_OutT]]
Retrieve all registered subscribers.
RETURNS | DESCRIPTION |
---|---|
set[Subscriber[_OutT]]
|
A set of all registered subscribers. |
get_subscriber_count
¶
Retrieve the number of registered subscribers.
RETURNS | DESCRIPTION |
---|---|
int
|
The total count of subscribers in the observable. |
contains_subscriber
¶
contains_subscriber(subscriber: Subscriber[_OutT]) -> bool
Determine if the specified subscriber is present in the observable.
PARAMETER | DESCRIPTION |
---|---|
subscriber
|
The subscriber to be checked.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
|
Source code in pyventus/reactive/observables/observable.py
subscribe
¶
subscribe(*, force_async: bool = False, stateful_subctx: bool = False) -> ObservableSubCtx[Self, _OutT]
subscribe(next_callback: NextCallbackType[_OutT] | None = None, error_callback: ErrorCallbackType | None = None, complete_callback: CompleteCallbackType | None = None, *, force_async: bool = False) -> Subscriber[_OutT]
subscribe(next_callback: NextCallbackType[_OutT] | None = None, error_callback: ErrorCallbackType | None = None, complete_callback: CompleteCallbackType | None = None, *, force_async: bool = False, stateful_subctx: bool = False) -> Subscriber[_OutT] | ObservableSubCtx[Self, _OutT]
Subscribe the specified callbacks to the current Observable
.
This method can be utilized in three ways:
-
As a regular function: Automatically creates and subscribes an observer with the specified callbacks.
-
As a decorator: Creates and subscribes an observer, using the decorated callback as the next callback.
-
As a context manager: Enables a step-by-step definition of the observer's callbacks prior to subscription, which occurs immediately after exiting the context.
PARAMETER | DESCRIPTION |
---|---|
next_callback
|
The callback to be executed when the observable emits a new value.
TYPE:
|
error_callback
|
The callback to be executed when the observable encounters an error.
TYPE:
|
complete_callback
|
The callback that will be executed when the observable has completed emitting values.
TYPE:
|
force_async
|
Determines whether to force all callbacks to run asynchronously.
TYPE:
|
stateful_subctx
|
A flag indicating whether the subscription context preserves its state (
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Subscriber[_OutT] | ObservableSubCtx[Self, _OutT]
|
A |
Source code in pyventus/reactive/observables/observable.py
remove_subscriber
¶
remove_subscriber(subscriber: Subscriber[_OutT]) -> bool
Remove the specified subscriber from the observable.
PARAMETER | DESCRIPTION |
---|---|
subscriber
|
The subscriber to be removed from the observable.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
|
Source code in pyventus/reactive/observables/observable.py
remove_all
¶
Remove all subscribers from the observable.
RETURNS | DESCRIPTION |
---|---|
bool
|
|