MessageSource

trait MessageSource extends AutoCloseable
trait AutoCloseable
class Object
trait Matchable
class Any

Value members

Abstract methods

override def close: Unit

Closes the input.

Closes the input.

When this method is called, the buffer previously returned from next method is no longer used. Thus implementation of this method can safely discard it.

If the input is already closed then invoking this method has no effect.

Throws:
Exception

when IO error occurred when closing the data source

Definition Classes
AutoCloseable
def next: Option[ReadBuffer]

Returns a next buffer to read.

Returns a next buffer to read.

This method should return a ReadBuffer instance that has data filled in. When this method is called twice, the previously returned buffer is no longer used. Thus implementation of this method can safely discard it. This is useful when it uses a memory pool.

Returns:

the next input ReadBuffer, or return None if no more buffer is available.

Throws:
java.io.IOException

when IO error occurred when reading the data