Skip to content

ConcurrentObserverCallsException class

Defined in

Namespace: ReactiveUI.Extensions.Async Assembly: ReactiveUI.Extensions.dll Full name: ReactiveUI.Extensions.Async.ConcurrentObserverCallsException Modifiers: public

Summary

View source

        The exception that is thrown when multiple concurrent calls are made to observer methods that do not support
        concurrent execution.
        

Applies to

net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481

Class hierarchy
classDiagram
class ConcurrentObserverCallsException
class Exception
Exception <|-- ConcurrentObserverCallsException

Inherits from: Exception

Remarks

This exception indicates that a call to OnNextAsync, OnErrorResumeAsync, or OnCompletedAsync was attempted while a previous call to one of these methods is still pending. ObserverAsync does not allow concurrent invocations of these methods; callers should ensure that each call completes before initiating another.

Constructors

NameSummary
.ctorInitializes a new instance of the [ConcurrentObserverCallsException](# class.
Inherited members