Package ubic.gemma.web.util.dwr
Class DwrBatchHandlers
- java.lang.Object
-
- ubic.gemma.web.util.dwr.DwrBatchHandlers
-
public class DwrBatchHandlers extends Object
Handles DWR batches.- Author:
- poirigui
-
-
Constructor Summary
Constructors Constructor Description DwrBatchHandlers(int batchId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> DwrCallbackHandler<T>
getCallback(int callId, Consumer<T> doWithReply)
<T> DwrCallbackHandler<T>
getCallback(Consumer<T> doWithReply)
DwrExceptionHandler
getException(int callId, Consumer<DwrException> doWithException)
DwrExceptionHandler
getException(Consumer<DwrException> doWithException)
-
-
-
Method Detail
-
getCallback
public <T> DwrCallbackHandler<T> getCallback(int callId, Consumer<T> doWithReply)
-
getCallback
public <T> DwrCallbackHandler<T> getCallback(Consumer<T> doWithReply)
-
getException
public DwrExceptionHandler getException(int callId, Consumer<DwrException> doWithException)
-
getException
public DwrExceptionHandler getException(Consumer<DwrException> doWithException)
-
-