Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IObserver.cs
Go to the documentation of this file.
1
namespace
System
;
2
3
public
interface
IObserver
<in T>
4
{
5
void
OnNext
(T
value
);
6
7
void
OnError
(
Exception
error);
8
9
void
OnCompleted
();
10
}
System.Exception
Definition
Exception.cs:15
System.IObserver.OnCompleted
void OnCompleted()
System.IObserver.OnError
void OnError(Exception error)
System.IObserver.OnNext
void OnNext(T value)
System.IObserver
Definition
IObserver.cs:4
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
source
System.Private.CoreLib
System
IObserver.cs
Generated by
1.10.0