public interface QueryReference<T extends Object, S extends Object>
Generic reference entity that wrap a request to ChatClient and expose offline state (see asState). T is a type of requested data. S is a offline state.
abstract Call<T>
get()
abstract S
asState(CoroutineScope scope)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract Call<T> get()
Returns a call as result of request
abstract S asState(CoroutineScope scope)
Returns an offline state representing this request.
scope