Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.PoolStrategy
-
Packages that use AgentBuilder.PoolStrategy Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent. -
-
Uses of AgentBuilder.PoolStrategy in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.PoolStrategy Modifier and Type Class Description static class
AgentBuilder.PoolStrategy.ClassLoading
A type locator that attempts loading a type if it cannot be located by the underlying lazy type pool.static class
AgentBuilder.PoolStrategy.Default
A default type locator that resolves types only if any property that is not the type's name is requested.static class
AgentBuilder.PoolStrategy.Eager
A type locator that resolves all type descriptions eagerly.static class
AgentBuilder.PoolStrategy.WithTypePoolCache
A type locator that uses type pools but allows for the configuration of a custom cache provider by class loader.static class
AgentBuilder.PoolStrategy.WithTypePoolCache.Simple
An implementation of a type locatorAgentBuilder.PoolStrategy.WithTypePoolCache
(note documentation of the linked class) that is based on aConcurrentMap
.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.PoolStrategy Modifier and Type Field Description protected AgentBuilder.PoolStrategy
AgentBuilder.Default. poolStrategy
The type locator to use.
-