Interface IObserver<T>
Namespace: UnityEngine.Experimental.Input.Net35Compatibility
Syntax
public interface IObserver<in T>
Type Parameters
Name | Description |
---|---|
T |
Methods
OnCompleted()
Declaration
void OnCompleted()
OnError(Exception)
Declaration
void OnError(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception |
OnNext(T)
Declaration
void OnNext(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value |