Index
All Classes and Interfaces|All Packages
A
- agentmain(String, Instrumentation) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent
-
JVM agent entry point invoked when the agent is attached to an already running JVM (dynamic attach) — either through the Attach API or via
AsyncTestAgent.selfAttach(String). - Approach - Search tag in class se.deversity.asynctest.agent.AsyncTestAgent
- Section
- AsyncTestAgent - Class in se.deversity.asynctest.agent
-
Java instrumentation agent that injects access telemetry into application classes by weaving their JavaBean accessors, so detectors observe reads and writes without manual
recordFieldAccess()callbacks. - AsyncTestAgent.FieldAccessAdvice - Class in se.deversity.asynctest.agent
-
Deprecated.
- AsyncTestAgent.ReadAccessAdvice - Class in se.deversity.asynctest.agent
-
Byte Buddy
Adviceclass injected at the entry of every intercepted getter (read accessor). - AsyncTestAgent.WriteAccessAdvice - Class in se.deversity.asynctest.agent
-
Byte Buddy
Adviceclass injected at the entry of every intercepted setter (write accessor). - Attachment - Search tag in class se.deversity.asynctest.agent.AsyncTestAgent
- Section
E
- enter(String) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent.ReadAccessAdvice
-
Advice prologue for read accessors: records the accessing thread and the combined
declaringClass.methodNameidentifier as a read access before the original getter body executes. - enter(String) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent.WriteAccessAdvice
-
Advice prologue for write accessors: records the accessing thread and the combined
declaringClass.methodNameidentifier as a write access before the original setter body executes. - enter(String, String) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent.FieldAccessAdvice
-
Deprecated.since 1.7.0 — see class-level note
F
- Failure - Search tag in se.deversity.asynctest.agent.AsyncTestAgent.selfAttach(String)
- Section
I
- Idempotency and interaction with -javaagent - Search tag in se.deversity.asynctest.agent.AsyncTestAgent.selfAttach(String)
- Section
M
- Motivation - Search tag in class se.deversity.asynctest.agent.AsyncTestAgent
- Section
P
- premain(String, Instrumentation) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent
-
JVM agent entry point invoked before
main().
S
- Scope - Search tag in class se.deversity.asynctest.agent.AsyncTestAgent
- Section
- se.deversity.asynctest.agent - package se.deversity.asynctest.agent
- selfAttach() - Static method in class se.deversity.asynctest.agent.AsyncTestAgent
-
Attaches the agent to the currently running JVM at runtime, with no
agentArgs, so that every non-ignored class is instrumented. - selfAttach(String) - Static method in class se.deversity.asynctest.agent.AsyncTestAgent
-
Attaches the agent to the currently running JVM at runtime — no
-javaagent:launch flag required.
W
- When to call - Search tag in se.deversity.asynctest.agent.AsyncTestAgent.selfAttach(String)
- Section
All Classes and Interfaces|All Packages
AsyncTestAgent.ReadAccessAdvice/AsyncTestAgent.WriteAccessAdvice; this variant concatenates the identifier on every intercepted call.