Package com.intergral.deep.agent.api
Interface IRegistration<T>
-
- All Known Subinterfaces:
ITracepoint.ITracepointRegistration
public interface IRegistration<T>This is a generic interface from the result of a registration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tget()Get the registered item.voidunregister()Unregister the item registered.
-
-
-
Method Detail
-
unregister
void unregister()
Unregister the item registered.
-
get
T get()
Get the registered item.- Returns:
- the item that this registration is for.
-
-