Class CompositionStreamId<X,T>
- java.lang.Object
-
- org.streamingpool.core.service.streamid.CompositionStreamId<X,T>
-
- Type Parameters:
X- The type of objects emitted by the sourcePublishers.T- The type of objects emitted by the new createdPublisher.
- All Implemented Interfaces:
java.io.Serializable,StreamId<T>
@Deprecated public final class CompositionStreamId<X,T> extends java.lang.Object implements StreamId<T>, java.io.Serializable
Deprecated.Generic implementation ofStreamIdwhich in conjunction with theCompositionStreamFactoryallows for the easy creation of general purpose streams based on composition of streams. This class is experimental.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompositionStreamId(java.util.List<StreamId<X>> sourceStreamIds, java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>> transformation)Deprecated.Creates aCompositionStreamIdwith the provided sourceStreamIds and function.CompositionStreamId(StreamId<X> sourceStreamId, java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>> transformation)Deprecated.Creates aCompositionStreamIdwith the provided sourceStreamId and function.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Deprecated.inthashCode()Deprecated.java.util.List<StreamId<X>>sourceStreamIds()Deprecated.java.lang.StringtoString()Deprecated.java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>>transformation()Deprecated.
-
-
-
Constructor Detail
-
CompositionStreamId
public CompositionStreamId(StreamId<X> sourceStreamId, java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>> transformation)
Deprecated.Creates aCompositionStreamIdwith the provided sourceStreamId and function.
-
CompositionStreamId
public CompositionStreamId(java.util.List<StreamId<X>> sourceStreamIds, java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>> transformation)
Deprecated.Creates aCompositionStreamIdwith the provided sourceStreamIds and function.
-
-
Method Detail
-
transformation
public java.util.function.Function<java.util.List<org.reactivestreams.Publisher<X>>,org.reactivestreams.Publisher<T>> transformation()
Deprecated.
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-