RdContext

fun <T : Any> RdContext(    key: String,     heavy: Boolean,     serializer: IMarshaller<T>)

Parameters

key

textual name of this context. This is used to match this with protocol counterparts

heavy

Whether this context is heavy. A heavy context maintains a value set and interns values. A light context sends values as-is and does not maintain a value set.

serializer

Serializer to be used with this context.