com.undefinedlabs.scope.rules.AkkaComposedScopeAgentRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scope-rule-akka Show documentation
Show all versions of scope-rule-akka Show documentation
Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly
identify, troubleshoot and fix failed builds.
This artifact contains the classes to instrument the Akka.
package com.undefinedlabs.scope.rules;
import java.util.Arrays;
public class AkkaComposedScopeAgentRule extends AbstractComposedScopeAgentRule {
@Override
protected Iterable extends AbstractScopeAgentRule> rules() {
return Arrays.asList(
new ActorRefScopeAgentRule(),
new ActorSelectionScopeAgentRule(),
new ActorScopeAgentRule(),
new ScalaActorRefScopeAgentRule(),
new ScalaActorSelectionScopeAgentRule());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy