Package | Description |
---|---|
net.bytebuddy.instrumentation |
The instrumentation package contains any logic for intercepting method calls.
|
Modifier and Type | Method and Description |
---|---|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(Constructor<?> constructor,
Object... argument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(MethodDescription bootstrapMethod,
Object... argument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method or constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(Method method,
Object... argument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method.
|
Copyright © 2014–2015. All rights reserved.