circuit


License

License

GroupId

GroupId

io.chrisdavenport
ArtifactId

ArtifactId

circuit_2.11
Last Version

Last Version

0.2.3
Release Date

Release Date

Type

Type

jar
Description

Description

circuit
circuit
Project URL

Project URL

https://github.com/ChristopherDavenport/circuit
Project Organization

Project Organization

io.chrisdavenport
Source Code Management

Source Code Management

https://github.com/ChristopherDavenport/circuit

Download circuit_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/io.chrisdavenport/circuit_2.11/ -->
<dependency>
    <groupId>io.chrisdavenport</groupId>
    <artifactId>circuit_2.11</artifactId>
    <version>0.2.3</version>
</dependency>
// https://jarcasting.com/artifacts/io.chrisdavenport/circuit_2.11/
implementation 'io.chrisdavenport:circuit_2.11:0.2.3'
// https://jarcasting.com/artifacts/io.chrisdavenport/circuit_2.11/
implementation ("io.chrisdavenport:circuit_2.11:0.2.3")
'io.chrisdavenport:circuit_2.11:jar:0.2.3'
<dependency org="io.chrisdavenport" name="circuit_2.11" rev="0.2.3">
  <artifact name="circuit_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.chrisdavenport', module='circuit_2.11', version='0.2.3')
)
libraryDependencies += "io.chrisdavenport" % "circuit_2.11" % "0.2.3"
[io.chrisdavenport/circuit_2.11 "0.2.3"]

Dependencies

compile (3)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
org.typelevel : cats-core_2.11 jar 1.6.0
org.typelevel : cats-effect_2.11 jar 1.2.0

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 3.0.5

Project Modules

There are no modules declared in this project.

circuit - Circuit Breaker for Scala Build Status Maven Central

The CircuitBreaker is used to provide stability and prevent cascading failures in distributed systems.

Head on over to the microsite

Quick Start

To use circuit in an existing SBT project with Scala 2.11 or a later version, add the following dependencies to your build.sbt depending on your needs:

libraryDependencies ++= Seq(
  "io.chrisdavenport" %% "circuit" % "<version>"
)

Versions

Version
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0-M1