com.lightbend.lagom.javadsl.api.deser.StrictMessageSerializer Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Lightbend Inc.
*/
package com.lightbend.lagom.javadsl.api.deser;
import akka.util.ByteString;
/**
* A strict message serializer, for messages that fit and are worked with strictly in memory.
*
* Strict message serializers differ from streamed serializers, in that they work directly with `ByteString`, rather
* than an Akka streams `Source`.
*/
public interface StrictMessageSerializer extends MessageSerializer {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy