StreamingEndpointImpl
open class StreamingEndpointImpl<TEntity : Any>(referrer: Endpoint, relativeUri: URI, entityType: Class<TEntity>, separator: String = "") : AbstractEndpoint, StreamingEndpoint<TEntity>
Endpoint for a stream of TEntitys using a persistent HTTP connection.
Parameters
referrer
The endpoint used to navigate to this one.
relativeUri
The URI of this endpoint relative to the referrer's.
entityType
The type of individual elements in the stream.
separator
The character sequence used to detect that a new element starts in an HTTP stream.
Type Parameters
TEntity
The type of individual elements in the stream.