DOC

com.github.norwae : circuit4stream_2.12

Maven & Gradle

May 10, 2019
0 stars

circuit4stream · 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.

Table Of Contents

Latest Version

Download com.github.norwae : circuit4stream_2.12 Javadoc & API Documentation - Latest Versions:

All Versions

Download com.github.norwae : circuit4stream_2.12 Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file circuit4stream_2.12-1.0.0-javadoc.jar to circuit4stream_2.12-1.0.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder circuit4stream_2.12-1.0.0-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "circuit4stream_2.12-1.0.0-sources.jar" -d "circuit4stream_2.12-1.0.0-javadoc" -subpackages 

Advertisement