Observer<U> Interface
Type Parameters
- U
Observer class template parameter.
public interface Observer
A class can implement the Observer interface when it wants to be informed of changes in observable objects.
Method Summary
Modifier and Type | Method and Description |
---|---|
void |
update(final Object sender, U arg)
This method is called whenever the observed object is changed. |
Method Details
update
public void update(final Object sender, U arg)
This method is called whenever the observed object is changed.
Parameters:
sender
- Observable object.
arg
- an argument passed to the system.fabric.Observable#notifyObservers(Object, Object) method.
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.
Azure SDK for Java