trait StreamRefResolver extends Extension
Ordering
- Alphabetic
- By Inheritance
Inherited
- StreamRefResolver
- Extension
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def resolveSinkRef[T](serializedSinkRef: String): SinkRef[T]
Deserialize an
SinkRef
in the #toSerializationFormat. - abstract def resolveSourceRef[T](serializedSourceRef: String): SourceRef[T]
Deserialize an
SourceRef
in the #toSerializationFormat. - abstract def toSerializationFormat[T](ref: SinkRef[T]): String
Generate full String representation of the
SinkRef
.Generate full String representation of the
SinkRef
. This representation should be used as serialized representation. - abstract def toSerializationFormat[T](ref: SourceRef[T]): String
Generate full String representation of the
SourceRef
.Generate full String representation of the
SourceRef
. This representation should be used as serialized representation.
The stream ref resolver provides a way to serialize and deserialize streamrefs in user serializers.
Not for user extension