Uses of Class
org.apache.ignite.spi.tracing.Scope
-
Packages that use Scope Package Description org.apache.ignite.spi.tracing Contains common classes and interfaces for tracing SPI implementations. -
-
Uses of Scope in org.apache.ignite.spi.tracing
Methods in org.apache.ignite.spi.tracing that return Scope Modifier and Type Method Description static Scope
Scope. fromIndex(short idx)
Created Scope from it's index.@NotNull Scope
TracingConfigurationCoordinates. scope()
static Scope
Scope. valueOf(String name)
Returns the enum constant of this type with the specified name.static Scope[]
Scope. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ignite.spi.tracing that return types with arguments of type Scope Modifier and Type Method Description @NotNull Set<Scope>
TracingConfigurationParameters. includedScopes()
Methods in org.apache.ignite.spi.tracing with parameters of type Scope Modifier and Type Method Description @NotNull Map<TracingConfigurationCoordinates,TracingConfigurationParameters>
TracingConfigurationManager. getAll(@Nullable Scope scope)
List all pairs of tracing configuration coordinates and tracing configuration parameters or list all pairs of tracing configuration and parameters for the specific scope.void
TracingConfigurationManager. resetAll(@Nullable Scope scope)
Reset tracing configuration for the specific scope, or all tracing configurations if scope not specified.Method parameters in org.apache.ignite.spi.tracing with type arguments of type Scope Modifier and Type Method Description @NotNull TracingConfigurationParameters.Builder
TracingConfigurationParameters.Builder. withIncludedScopes(Set<Scope> includedScopes)
Builder method that allows to set included scopes.Constructors in org.apache.ignite.spi.tracing with parameters of type Scope Constructor Description Builder(Scope scope)
Constructor.
-