Package io.perfmark
Class Link
- java.lang.Object
-
- io.perfmark.Link
-
public final class Link extends java.lang.Object
A link represents a linkage between asynchronous tasks. A link is created inside of a started task. The resultingLink
object can then be passed to other asynchronous tasks to associate them with the original task.A source task may have multiple outbound links pointing to other tasks. However, calling
PerfMark.linkIn(Link)
only work if it is the first such call. Subsequent calls have no effect.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
link()
Deprecated.
-
-
-
Method Detail
-
link
@Deprecated public void link()
Deprecated.DO NOT CALL, no longer implemented. UsePerfMark.linkIn(io.perfmark.Link)
instead.
-
-