Package akka.stream
Class SinkShape<T>
- java.lang.Object
-
- akka.stream.Shape
-
- akka.stream.SinkShape<T>
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public final class SinkShape<T> extends Shape implements scala.Product, java.io.Serializable
A SinkShape
has exactly one input and no outputs, it models a data sink.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> SinkShape<T>
apply(Inlet<T> in)
boolean
canEqual(java.lang.Object x$1)
<T> SinkShape<T>
copy(Inlet<T> in)
<T> Inlet<T>
copy$default$1()
SinkShape<T>
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.boolean
equals(java.lang.Object x$1)
int
hashCode()
Inlet<T>
in()
scala.collection.immutable.Seq<Inlet<?>>
inlets()
Scala API: get a list of all input portsstatic <T> SinkShape<T>
of(Inlet<T> inlet)
Java APIscala.collection.immutable.Seq<Outlet<?>>
outlets()
Scala API: get a list of all output portsint
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
static <T> scala.Option<Inlet<T>>
unapply(SinkShape<T> x$0)
-
Methods inherited from class akka.stream.Shape
getInlets, getOutlets, hasOnePort, hasSamePortsAndShapeAs, hasSamePortsAs, requireSamePortsAndShapeAs, requireSamePortsAs
-
-
-
-
Method Detail
-
inlets
public scala.collection.immutable.Seq<Inlet<?>> inlets()
Description copied from class:Shape
Scala API: get a list of all input ports
-
outlets
public scala.collection.immutable.Seq<Outlet<?>> outlets()
Description copied from class:Shape
Scala API: get a list of all output ports
-
deepCopy
public SinkShape<T> deepCopy()
Description copied from class:Shape
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.
-
copy$default$1
public <T> Inlet<T> copy$default$1()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-