IObserver<T>.OnNext(T) Metodo

Definizione

Fornisce nuovi dati all'osservatore.

public void OnNext (T value);
abstract member OnNext : 'T -> unit
Public Sub OnNext (value As T)

Parametri

value
T

Informazioni per la notifica corrente.

Esempio

Nell'esempio seguente viene fornita un'implementazione del OnNext metodo in un'applicazione di rilevamento latitudine/longitudine. Vedere la sezione Esempio dell'argomento IObserver<T> per l'esempio completo.

public virtual void OnNext(Location value)
{
   Console.WriteLine("{2}: The current location is {0}, {1}", value.Latitude, value.Longitude, this.Name);
}
member _.OnNext(value) =
    printfn $"{name}: The current location is {value.Latitude}, {value.Longitude}"
Public Overridable Sub OnNext(ByVal value As Location) Implements System.IObserver(Of Location).OnNext
   Console.WriteLine("{2}: The current location is {0}, {1}", value.Latitude, value.Longitude, Me.Name)
End Sub

Commenti

Dopo che un osservatore ha chiamato il metodo di IObservable<T>.Subscribe un provider, il provider chiama il metodo dell'osservatore OnNext per fornire notifiche.

Si applica a