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

io.kinoplan.utils.redisson.codec.RedisDecoder.scala Maven / Gradle / Ivy

package io.kinoplan.utils.redisson.codec

import scala.util.Try

trait RedisDecoder[T] {
  def decode(value: String): Try[T]
}

object RedisDecoder {

  def apply[T](implicit
    decoder: RedisDecoder[T]
  ): RedisDecoder[T] = decoder

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy