Defining a standalone component logic

Standalone components are the components without input or output flows. They are designed to do actions without reading or processing any data. For example standalone components can be used to create indexes in databases.

Before implementing the component logic and defining its layout and configurable fields, make sure you have specified its basic metadata, as detailed in this document.

Defining a driver runner

What is a driver runner

A Driver Runner (DriverRunner) is a standalone component which doesn’t process or return any data.

A Driver runner must have a @RunAtDriver method without any parameter.

@RunAtDriver
public void run() {
    ...;
}
Scroll to top