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

akka.grpc.Identity.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2018-2019 Lightbend Inc. 
 */

package akka.grpc

import akka.util.ByteString

object Identity extends Codec {
  override val name = "identity"

  override def compress(bytes: ByteString): ByteString = bytes

  override def uncompress(bytes: ByteString): ByteString = bytes
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy