Package com.google.api.gax.httpjson
Interface PollingRequestFactory<RequestT>
-
- Type Parameters:
RequestT- polling request type
public interface PollingRequestFactory<RequestT>A factory which creates a subsequent polling request from a compund operation id.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequestTcreate(java.lang.String compoundOperationId)Creates a polling request message from acompoundOperationId.
-
-
-
Method Detail
-
create
RequestT create(java.lang.String compoundOperationId)
Creates a polling request message from acompoundOperationId.- Parameters:
compoundOperationId- the compound operation ID, consisting of an operation name and potentially any other relevant information delimited by a ':' * character
-
-