pipelines property

List<ServerPipeline> pipelines
final

The handler pipeline.

This is a List of ServerPipeline that the request is processed through.

Normal List operations can be used on it. For example, to obtain the first pipeline (that the Server constructor creates by default):

var s = new Server();
var firstPipeline = s.pipelines.first;

Or to add additional pipelines:

var p2 = new Pipeline();
s.pipelines.add(p2);

Implementation

final List<ServerPipeline> pipelines = <ServerPipeline>[]