Conduit v0.12.10 Conduit.Pipeline View Source

Configuration for a pipeline.

Link to this section Summary

Functions

Creates a new pipeline struct

Link to this section Types

Link to this type t() View Source
t() :: %Conduit.Pipeline{name: name(), plugs: plugs()}

Link to this section Functions

Link to this function new(name, plugs) View Source
new(name(), plugs()) :: t()

Creates a new pipeline struct

Examples

iex> Conduit.Pipeline.new(:in_tracking, [{:put_message_id, 1}])
%Conduit.Pipeline{name: :in_tracking, plugs: [{:put_message_id, 1}]}