AsyncOperation.Supplier<T> Interface
Type Parameters
- T
Type of object supplied
public interface Supplier<T>
Represents a function that supplies a T value (not necessarily new/distinct) when asked.
This is a functional interface equivalent to android's Supplier interface
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| T |
get()
Get a value |
Method Details
get
public T get()
Get a value
Returns:
Value that the interface supplies.