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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Java