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

com.twitter.finagle.codec.package.scala Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.twitter.finagle

import com.twitter.io.Buf

package object codec {
  type FrameEncoder[-Out] = (Out => Buf)

  // as can be surmised from the type, stateful implementations
  // of `FrameDecoder` should be expected.
  type FrameDecoder[+In] = (Buf => IndexedSeq[In])
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy