All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.protostream.impl.WriteMessageContext Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.protostream.impl;

import org.infinispan.protostream.MessageContext;
import org.infinispan.protostream.RawProtoStreamWriter;

/**
 * @author [email protected]
 */
final class WriteMessageContext extends MessageContext {

   final RawProtoStreamWriter out;

   final MessageMarshallerDelegate marshallerDelegate;

   WriteMessageContext(WriteMessageContext parent, String fieldName, MessageMarshallerDelegate marshallerDelegate, RawProtoStreamWriter out) {
      super(parent, fieldName, marshallerDelegate.getMessageDescriptor());
      this.out = out;
      this.marshallerDelegate = marshallerDelegate;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy