Uses of Class
kieker.analysis.behavior.events.EntryCallEvent
| Package | Description |
|---|---|
| kieker.analysis.behavior |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
| kieker.analysis.behavior.acceptance.matcher |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
| kieker.analysis.behavior.model |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
-
Uses of EntryCallEvent in kieker.analysis.behavior
Methods in kieker.analysis.behavior that return types with arguments of type EntryCallEvent Modifier and Type Method Description teetime.framework.InputPort<EntryCallEvent>EntryCallSequenceStage. getEntryCallInputPort()teetime.framework.InputPort<EntryCallEvent>UserSessionGeneratorCompositeStage. getInputPort()Methods in kieker.analysis.behavior with parameters of type EntryCallEvent Modifier and Type Method Description voidUserSessionToBehaviorModelTransformation. addEdge(EntryCallEvent event, com.google.common.graph.MutableNetwork<INode,UserBehaviorEdge> model, INode source, INode target)Adds an edge to a model, if the edge does not exist already.Method parameters in kieker.analysis.behavior with type arguments of type EntryCallEvent Modifier and Type Method Description com.google.common.graph.MutableNetwork<INode,UserBehaviorEdge>UserSessionToBehaviorModelTransformation. eventsToModel(java.util.List<EntryCallEvent> events)Converts a list of events into a behavior model. -
Uses of EntryCallEvent in kieker.analysis.behavior.acceptance.matcher
Methods in kieker.analysis.behavior.acceptance.matcher with parameters of type EntryCallEvent Modifier and Type Method Description booleanGenericEntryCallAcceptanceMatcher. match(EntryCallEvent call)booleanIEntryCallAcceptanceMatcher. match(EntryCallEvent call)Match whether the call is correct of interest for the application. -
Uses of EntryCallEvent in kieker.analysis.behavior.model
Fields in kieker.analysis.behavior.model with type parameters of type EntryCallEvent Modifier and Type Field Description static java.util.Comparator<EntryCallEvent>UserSession. SORT_ENTRY_CALL_EVENTS_BY_ENTRY_TIMESimple comparator for comparing the entry times.static java.util.Comparator<EntryCallEvent>UserSession. SORT_ENTRY_CALL_EVENTS_BY_EXIT_TIMESimple comparator for comparing the exit times.Methods in kieker.analysis.behavior.model that return types with arguments of type EntryCallEvent Modifier and Type Method Description java.util.List<EntryCallEvent>EventGroup. getEvents()java.util.List<EntryCallEvent>UserSession. getEvents()java.util.Iterator<EntryCallEvent>UserSession. iterator()Get the iterator of the internal event list.Methods in kieker.analysis.behavior.model with parameters of type EntryCallEvent Modifier and Type Method Description voidUserSession. add(EntryCallEvent event)Add the given event to this user session.voidUserSession. add(EntryCallEvent event, boolean sortByEntryTime)Add the given event to this user session and sort the internal list by the entry time if true is set for sortByEntrytime.voidUserBehaviorEdge. addEvent(EntryCallEvent event)Add a new event to the edge.static java.lang.StringUserSession. createUserSessionId(EntryCallEvent event)Parse the id which would be constructed by theUserSessionclass if it contained that event.booleanEventGroup. hasSameParameters(EntryCallEvent event)voidEntryCallEventSerializer. serialize(EntryCallEvent event, com.fasterxml.jackson.core.JsonGenerator jsonGenerator, com.fasterxml.jackson.databind.SerializerProvider provider)Method parameters in kieker.analysis.behavior.model with type arguments of type EntryCallEvent Modifier and Type Method Description voidUserSession. sortEventsBy(java.util.Comparator<EntryCallEvent> cmp)Sort the internal events by the givenComparator.Constructors in kieker.analysis.behavior.model with parameters of type EntryCallEvent Constructor Description UserBehaviorEdge(java.lang.String id, EntryCallEvent event)Create a new edge between two nodes.