Uses of Class
io.perfmark.Tag
-
Packages that use Tag Package Description io.perfmark PerfMark is a very low overhead tracing library, designed for in-process use.io.perfmark.impl Represents implementation pieces to make PerfMark work. -
-
Uses of Tag in io.perfmark
Fields in io.perfmark declared as Tag Modifier and Type Field Description (package private) static TagImpl. NO_TAGMethods in io.perfmark that return Tag Modifier and Type Method Description protected TagImpl. createTag(java.lang.String tagName, long tagId)static TagPerfMark. createTag()Creates a tag with no name or numeric identifier.static TagPerfMark. createTag(long id)Creates a tag with no name.static TagPerfMark. createTag(java.lang.String name)Creates a tag with no numeric identifier.static TagPerfMark. createTag(java.lang.String name, long id)Creates a tag with both a name and a numeric identifier.protected static TagImpl. packTag(java.lang.String tagName, long tagId)Methods in io.perfmark with parameters of type Tag Modifier and Type Method Description protected voidImpl. attachTag(Tag tag)static voidPerfMark. attachTag(Tag tag)Attaches an additional tag to the current active task.protected voidImpl. event(java.lang.String eventName, Tag tag)static voidPerfMark. event(java.lang.String eventName, Tag tag)Marks an event.protected voidImpl. startTask(java.lang.String taskName, Tag tag)static voidPerfMark. startTask(java.lang.String taskName, Tag tag)Marks the beginning of a task.protected voidImpl. stopTask(java.lang.String taskName, Tag tag)static voidPerfMark. stopTask(java.lang.String taskName, Tag tag)Marks the end of a task.protected static longImpl. unpackTagId(Tag tag)protected static java.lang.StringImpl. unpackTagName(Tag tag)Constructors in io.perfmark with parameters of type Tag Constructor Description Impl(Tag key)The Noop implementation -
Uses of Tag in io.perfmark.impl
Fields in io.perfmark.impl declared as Tag Modifier and Type Field Description private static TagSecretPerfMarkImpl.PerfMarkImpl. NO_TAGMethods in io.perfmark.impl that return Tag Modifier and Type Method Description protected TagSecretPerfMarkImpl.PerfMarkImpl. createTag(java.lang.String tagName, long tagId)Methods in io.perfmark.impl with parameters of type Tag Modifier and Type Method Description protected voidSecretPerfMarkImpl.PerfMarkImpl. attachTag(Tag tag)protected voidSecretPerfMarkImpl.PerfMarkImpl. event(java.lang.String eventName, Tag tag)protected voidSecretPerfMarkImpl.PerfMarkImpl. startTask(java.lang.String taskName, Tag tag)protected voidSecretPerfMarkImpl.PerfMarkImpl. stopTask(java.lang.String taskName, Tag tag)Constructors in io.perfmark.impl with parameters of type Tag Constructor Description PerfMarkImpl(Tag key)
-