Uses of Class
io.perfmark.Tag
-
-
Uses of Tag in io.perfmark
Fields in io.perfmark declared as Tag Modifier and Type Field Description (package private) static Tag
Impl. NO_TAG
Methods in io.perfmark that return Tag Modifier and Type Method Description protected Tag
Impl. createTag(java.lang.String tagName, long tagId)
static Tag
PerfMark. createTag()
Creates a tag with no name or numeric identifier.static Tag
PerfMark. createTag(long id)
Creates a tag with no name.static Tag
PerfMark. createTag(java.lang.String name)
Creates a tag with no numeric identifier.static Tag
PerfMark. createTag(java.lang.String name, long id)
Creates a tag with both a name and a numeric identifier.protected static Tag
Impl. packTag(java.lang.String tagName, long tagId)
Methods in io.perfmark with parameters of type Tag Modifier and Type Method Description protected void
Impl. attachTag(Tag tag)
static void
PerfMark. attachTag(Tag tag)
Attaches an additional tag to the current active task.protected void
Impl. event(java.lang.String eventName, Tag tag)
static void
PerfMark. event(java.lang.String eventName, Tag tag)
Marks an event.protected void
Impl. startTask(java.lang.String taskName, Tag tag)
static void
PerfMark. startTask(java.lang.String taskName, Tag tag)
Marks the beginning of a task.protected void
Impl. stopTask(java.lang.String taskName, Tag tag)
static void
PerfMark. stopTask(java.lang.String taskName, Tag tag)
Marks the end of a task.protected static long
Impl. unpackTagId(Tag tag)
protected static java.lang.String
Impl. unpackTagName(Tag tag)
Constructors in io.perfmark with parameters of type Tag Constructor Description Impl(Tag key)
The Noop implementation
-