All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.serenitybdd.core.parallel.Agent Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version
package net.serenitybdd.core.parallel;

/**
 * An agent is an actor or task that can keep track of events in a separate step listener.
 * Agents are used for parallel processing within a test.
 */
public interface Agent {
    String IN_THE_CURRENT_SESSION = "$AGENT";
    String getId();
    String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy