Class DictionaryResponse
- java.lang.Object
-
- com.algolia.search.models.dictionary.DictionaryResponse
-
- All Implemented Interfaces:
WaitableResponse,Serializable
public class DictionaryResponse extends Object implements WaitableResponse, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DictionaryResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetTaskID()ZonedDateTimegetUpdatedAt()DictionaryResponsesetTaskID(Long taskID)DictionaryResponsesetUpdatedAt(ZonedDateTime updatedAt)voidsetWaitConsumer(Consumer<Long> waitConsumer)voidwaitTask()Wait for a task to complete before executing the next line of code, to synchronize index updates.
-
-
-
Method Detail
-
getTaskID
public Long getTaskID()
-
setTaskID
public DictionaryResponse setTaskID(Long taskID)
-
getUpdatedAt
public ZonedDateTime getUpdatedAt()
-
setUpdatedAt
public DictionaryResponse setUpdatedAt(ZonedDateTime updatedAt)
-
waitTask
public void waitTask()
Description copied from interface:WaitableResponseWait for a task to complete before executing the next line of code, to synchronize index updates.- Specified by:
waitTaskin interfaceWaitableResponse
-
-