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

backbone.MessageWriter.scala Maven / Gradle / Ivy

package backbone

/**
 * Typeclass to write elements of type T to String to allow publishing to an Amazon SNS topic
 * @tparam T
 */
trait MessageWriter[T] {

  /**
   *
   * @param message message to be written as String
   * @return String write from the message
   */
  def write(message: T): String

}

object MessageWriter {
  def apply[T](f: T => String) = new MessageWriter[T] {
    override def write(message: T): String = f(message)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy