c

circuit4stream_2.12

This module packages a circuit breaker that can be used to avoid overloading or otherwise depending on a temporarily unavailable (remote) system. The central use of the circuit breaker is to prevent failures from one system to cascade to other systems in an unchecked manner. Thus, our implementation is chiefly concerned with replacing a failing component with another component that fails in a very predictable manner. These failures are not "dropped" or otherwise made invisible, and still need to be handled, but they will occur in a predictable, and hopefully usable manner.
https://github.com/norwae/circuit4stream
MIT
com.github.norwae
Stefan Schulz
文件下载
文件名 操作
circuit4stream_2.12-1.0.0.jar 下载
circuit4stream_2.12-1.0.0.pom 下载
circuit4stream_2.12-1.0.0-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.github.norwae</groupId>
  <artifactId>circuit4stream_2.12</artifactId>
  <version>1.0.0</version>
</dependency>
Gradle Groovy
implementation 'com.github.norwae:circuit4stream_2.12:1.0.0'
Gradle Kotlin
implementation("com.github.norwae:circuit4stream_2.12:1.0.0")
Scala SBT
libraryDependencies += "com.github.norwae" % "circuit4stream_2.12" % "1.0.0"
Groovy Grape
@Grapes(
  @Grab(group='com.github.norwae', module='circuit4stream_2.12', version='1.0.0')
)
Apache Ivy
<dependency org="com.github.norwae" name="circuit4stream_2.12" rev="1.0.0" />
Leiningen
[com.github.norwae/circuit4stream_2.12 "1.0.0"]
Apache Buildr
'com.github.norwae:circuit4stream_2.12:jar:1.0.0'