@HashCodeAndEqualsPlugin.Enhance public static class AgentBuilder.InstallationListener.StreamWriting extends Object implements AgentBuilder.InstallationListener
PrintStream.AgentBuilder.InstallationListener.Adapter, AgentBuilder.InstallationListener.Compound, AgentBuilder.InstallationListener.ErrorSuppressing, AgentBuilder.InstallationListener.NoOp, AgentBuilder.InstallationListener.StreamWriting| Modifier and Type | Field and Description |
|---|---|
protected static String |
PREFIX
The prefix prepended to any message written.
|
SUPPRESS_ERROR| Constructor and Description |
|---|
StreamWriting(PrintStream printStream)
Creates a new stream writing installation listener.
|
| Modifier and Type | Method and Description |
|---|---|
void |
onBeforeInstall(Instrumentation instrumentation,
ResettableClassFileTransformer classFileTransformer)
Invoked prior to the installation of a class file transformer.
|
Throwable |
onError(Instrumentation instrumentation,
ResettableClassFileTransformer classFileTransformer,
Throwable throwable)
Invoked if an installation causes an error.
|
void |
onInstall(Instrumentation instrumentation,
ResettableClassFileTransformer classFileTransformer)
Invoked upon the successful installation of a class file transformer.
|
void |
onReset(Instrumentation instrumentation,
ResettableClassFileTransformer classFileTransformer)
Invoked if an installation is reset.
|
static AgentBuilder.InstallationListener |
toSystemError()
Creates a stream writing installation listener that prints to
System.err. |
static AgentBuilder.InstallationListener |
toSystemOut()
Creates a stream writing installation listener that prints to
System.out. |
protected static final String PREFIX
public StreamWriting(PrintStream printStream)
printStream - The print stream to write to.public static AgentBuilder.InstallationListener toSystemOut()
System.out.System.out.public static AgentBuilder.InstallationListener toSystemError()
System.err.System.err.public void onBeforeInstall(Instrumentation instrumentation, ResettableClassFileTransformer classFileTransformer)
onBeforeInstall in interface AgentBuilder.InstallationListenerinstrumentation - The instrumentation on which the class file transformer is installed.classFileTransformer - The class file transformer that is being installed.public void onInstall(Instrumentation instrumentation, ResettableClassFileTransformer classFileTransformer)
AgentBuilder.InstallationListener.onError(Instrumentation, ResettableClassFileTransformer, Throwable).onInstall in interface AgentBuilder.InstallationListenerinstrumentation - The instrumentation on which the class file transformer is installed.classFileTransformer - The class file transformer that is being installed.public Throwable onError(Instrumentation instrumentation, ResettableClassFileTransformer classFileTransformer, Throwable throwable)
AgentBuilder.InstallationListener.onInstall(Instrumentation, ResettableClassFileTransformer).onError in interface AgentBuilder.InstallationListenerinstrumentation - The instrumentation on which the class file transformer is installed.classFileTransformer - The class file transformer that is being installed.throwable - The throwable that causes the error.null if the error is handled. Any subsequent listeners are not called if the exception is handled.public void onReset(Instrumentation instrumentation, ResettableClassFileTransformer classFileTransformer)
onReset in interface AgentBuilder.InstallationListenerinstrumentation - The instrumentation on which the class file transformer is installed.classFileTransformer - The class file transformer that is being installed.Copyright © 2014–2019. All rights reserved.