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