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

com.devsisters.shardcake.Replier.scala Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
package com.devsisters.shardcake

import zio.{ URIO, ZIO }

/**
 * A metadata object that allows sending a response back to the sender
 */
case class Replier[-R](id: String) { self =>
  def reply(reply: R): URIO[Sharding, Unit] =
    ZIO.serviceWithZIO[Sharding](_.reply(reply, self))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy