withOptions abstract method

RdfBinaryCodec<G> withOptions({
  1. RdfBinaryEncoderOptions? encoder,
  2. RdfBinaryDecoderOptions? decoder,
})

Creates a new codec instance with the specified options.

Returns a new instance of the codec configured with the provided encoder and decoder options. The original codec instance remains unchanged.

Implementation

RdfBinaryCodec<G> withOptions({
  RdfBinaryEncoderOptions? encoder,
  RdfBinaryDecoderOptions? decoder,
});