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

zio.macros.package.scala Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package zio

package object macros {

  implicit final class ReloadableSyntax[Service](private val layer: ZLayer[Any, Any, Service]) extends AnyVal {

    /**
     * Returns a layer that constructs a version of the service output by this
     * layer that can be dynamically reloaded with `ServiceReloader.reload`.
     */
    def reloadable(implicit
      tag: Tag[Service],
      isReloadable: IsReloadable[Service],
      trace: Trace
    ): ZLayer[ServiceReloader, ServiceReloader.Error, Service] =
      ZLayer.fromZIO(ServiceReloader.register(layer))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy