DOC

com.imperva.stepping : stepping

Maven & Gradle

Oct 20, 2022
10 stars

Stepping · Stepping is a framework designed to ease the implementation of data processing solutions. In use cases where we need to implement data or data-streaming algorithms or any other processing on data, we need to first handle many different infrastructure issues. For example, we need to decide how to split the data processing logic into different steps, think about our threading policy, how to handle communication between the different steps, error handling etc. One of the most important subjects is the Threading Policy of our solution. For example, we need to think how many threads to open, have the option to distribute the processing of data to multiple 'executors' in parallel, have a thread-safe communication layer between the threads etc. On top of that we also care a lot about the performance of our solution, we want to make sure that the latency added by these infrastructures is minimal as possible. Stepping aims to handle many of these aspects so developers can spend their time on the business logic instead of solving these infrastructure and data flow issues issues over and over again.

Table Of Contents

Latest Version

Download com.imperva.stepping : stepping Javadoc & API Documentation - Latest Versions:

All Versions

Download com.imperva.stepping : stepping Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
5.0.x
4.0.x
3.9.x
3.8.x
3.7.x
3.6.x
3.5.x

How to open Javadoc JAR file in web browser

  1. Rename the file stepping-5.0.0-javadoc.jar to stepping-5.0.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder stepping-5.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 "stepping-5.0.0-sources.jar" -d "stepping-5.0.0-javadoc" -subpackages 

Advertisement