trait BlockPushingListener extends BlockTransferListener
Callback to handle block push success and failure. This interface and
BlockFetchingListener are unified under BlockTransferListener to allow
code reuse for handling block push and fetch retry.
- Alphabetic
- By Inheritance
- BlockPushingListener
- BlockTransferListener
- EventListener
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def onBlockPushFailure(blockId: String, exception: Throwable): Unit
Called at least once per block upon failures.
- abstract def onBlockPushSuccess(blockId: String, data: ManagedBuffer): Unit
Called once per successfully pushed block.
Called once per successfully pushed block. After this call returns, data will be released automatically. If the data will be passed to another thread, the receiver should retain() and release() the buffer on their own, or copy the data to a new buffer.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getTransferType(): String
Return a string indicating the type of the listener such as fetch, push, or something else
Return a string indicating the type of the listener such as fetch, push, or something else
- Definition Classes
- BlockPushingListener → BlockTransferListener
- Annotations
- @Override()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def onBlockTransferFailure(blockId: String, exception: Throwable): Unit
Called at least once per block transfer failures.
Called at least once per block transfer failures.
- Definition Classes
- BlockPushingListener → BlockTransferListener
- Annotations
- @Override()
- def onBlockTransferSuccess(blockId: String, data: ManagedBuffer): Unit
Called once per successfully transferred block.
Called once per successfully transferred block.
- Definition Classes
- BlockPushingListener → BlockTransferListener
- Annotations
- @Override()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()