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

com.undefinedlabs.scope.context.instrumentation.DistributedContextComposedScopeRule Maven / Gradle / Ivy

package com.undefinedlabs.scope.context.instrumentation;

import com.undefinedlabs.scope.rules.AbstractComposedScopeAgentRule;
import com.undefinedlabs.scope.rules.AbstractScopeAgentRule;
import java.util.Arrays;

public class DistributedContextComposedScopeRule extends AbstractComposedScopeAgentRule {

  @Override
  protected Iterable rules() {
    return Arrays.asList(
        new ThreadDistributedContextScopeRule(),
        new ExecutorDistributedContextScopeRule(),
        new ExecutorServiceDistributedContextScopeRule());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy