- heavily inspired by spray.io.Pipeline - fully functional style: a stage returns the resulting commands and events, which makes it impossible to mess with the pipeline from the inside - object allocations are optimized away for emtpy and 1-elem results - added type-safety, verifying that stages match up - management commands “from the side” for configuration or async events - full Java API and docs
15 lines
249 B
Java
15 lines
249 B
Java
/**
|
|
* Copyright (C) 2013 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
|
|
package docs.io.japi;
|
|
|
|
import java.nio.ByteOrder;
|
|
|
|
import akka.io.PipelineContext;
|
|
|
|
public interface HasByteOrder extends PipelineContext {
|
|
|
|
public ByteOrder byteOrder();
|
|
|
|
}
|