JobCodec

trait JobCodec[A] extends JobDecoder[A] with JobDataEncoder[A]
Companion
object
trait JobDecoder[A]
class Object
trait Matchable
class Any

Value members

Concrete methods

def iemap[B](f: A => Either[Throwable, B])(g: B => A): JobCodec[B]

Inherited methods

def decode(jobExecutionContext: JobExecutionContext): Either[Throwable, A]
Inherited from
JobDecoder
def emap[B](f: A => Either[Throwable, B]): JobDecoder[B]
Inherited from
JobDecoder
def encode(a: A): JobData
Inherited from
JobDataEncoder