Search Results for

    Show / Hide Table of Contents

    Class Shape

    A Shape describes the inlets and outlets of a IGraph<TShape>. In keeping with the philosophy that a Graph is a freely reusable blueprint, everything that matters from the outside are the connections that can be made with it, otherwise it is just a black box.

    Inheritance
    object
    Shape
    AmorphousShape
    BidiShape<TIn1, TOut1, TIn2, TOut2>
    ClosedShape
    FanInShape<TOut>
    FanOutShape<TIn>
    FlowShape<TIn, TOut>
    SinkShape<TIn>
    SourceShape<TOut>
    Implements
    ICloneable
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Akka.Streams
    Assembly: Akka.Streams.dll
    Syntax
    public abstract class Shape : ICloneable

    Properties

    | Edit this page View Source

    Inlets

    Gets list of all input ports.

    Declaration
    public abstract ImmutableArray<Inlet> Inlets { get; }
    Property Value
    Type Description
    ImmutableArray<Inlet>
    | Edit this page View Source

    Outlets

    Gets list of all output ports.

    Declaration
    public abstract ImmutableArray<Outlet> Outlets { get; }
    Property Value
    Type Description
    ImmutableArray<Outlet>

    Methods

    | Edit this page View Source

    Clone()

    TBD

    Declaration
    public object Clone()
    Returns
    Type Description
    object

    TBD

    | Edit this page View Source

    CopyFromPorts(ImmutableArray<Inlet>, ImmutableArray<Outlet>)

    Create a copy of this Shape object, returning the same type as the original but containing the ports given within the passed-in Shape.

    Declaration
    public abstract Shape CopyFromPorts(ImmutableArray<Inlet> inlets, ImmutableArray<Outlet> outlets)
    Parameters
    Type Name Description
    ImmutableArray<Inlet> inlets

    TBD

    ImmutableArray<Outlet> outlets

    TBD

    Returns
    Type Description
    Shape

    TBD

    | Edit this page View Source

    DeepCopy()

    Create a copy of this Shape object, returning the same type as the original; this constraint can unfortunately not be expressed in the type system.

    Declaration
    public abstract Shape DeepCopy()
    Returns
    Type Description
    Shape

    TBD

    | Edit this page View Source

    HasSamePortsAndShapeAs(Shape)

    Compare this to another shape and determine whether the arrangement of ports is the same (including their ordering).

    Declaration
    public bool HasSamePortsAndShapeAs(Shape shape)
    Parameters
    Type Name Description
    Shape shape

    TBD

    Returns
    Type Description
    bool

    TBD

    | Edit this page View Source

    HasSamePortsAs(Shape)

    Compare this to another shape and determine whether the set of ports is the same (ignoring their ordering).

    Declaration
    public bool HasSamePortsAs(Shape shape)
    Parameters
    Type Name Description
    Shape shape

    TBD

    Returns
    Type Description
    bool

    TBD

    | Edit this page View Source

    ToString()

    Declaration
    public override sealed string ToString()
    Returns
    Type Description
    string
    Overrides
    object.ToString()

    Implements

    ICloneable

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET