![]() |
0.11.4
|
This is the API documentation for the BeepBeep 3 event stream processor.
BeepBeep is a Java library for event stream processing and runtime analysis. It provides a general-purpose framework for defining, composing, and executing processors that transform one or more streams of events into derived streams, possibly in real time.
At its core, BeepBeep models computation as a network of processors connected by streams. Each processor consumes events from its input streams, applies a well-defined operation, and produces output events incrementally, as data becomes available. This architecture makes it possible to express a wide range of tasks, from simple stream transformations to complex online queries and runtime monitors.
BeepBeep emphasizes:
Unlike many stream processing frameworks, BeepBeep is designed as a lightweight, embeddable library rather than a distributed platform. It runs in-process, requires no external services, and is suitable for integration into standalone applications, experimental prototypes, or research tools.
The API documentation describes the core abstractions of the library, (such as processors, functions, and connectors) as well as the standard processors provided by BeepBeep and its optional extensions.