Package com.naver.ads.deferred
Interface DeferredNode
-
- All Implemented Interfaces:
public interface DeferredNodeDefines an interface that is a execution unit.
-
-
Method Summary
Modifier and Type Method Description abstract RunnablegetRunnable()Returns the underlying task. abstract UnithandleError(Exception exception)Handles the error in this DeferredNode. abstract BooleanisCompleted()Return whether this DeferredNode is completed. -
-
Method Detail
-
getRunnable
abstract Runnable getRunnable()
Returns the underlying task.
-
handleError
abstract Unit handleError(Exception exception)
Handles the error in this DeferredNode.
-
isCompleted
abstract Boolean isCompleted()
Return whether this DeferredNode is completed.
-
-
-
-