Interface EventListener<T> (3.7.2)

public interface EventListener<T>

An interface for event listeners.

Type Parameter

NameDescription
T

Methods

onEvent(T value, FirestoreException error)

public abstract void onEvent(T value, FirestoreException error)

onEvent will be called with the new value or the error if an error occurred. It's guaranteed that exactly one of value or error will be non-null.

Parameters
NameDescription
valueT

The value of the event. null if there was an error.

errorFirestoreException

The error if there was error. null otherwise.