public interface SagaManagerSpanFactory
AbstractSagaManager. You can customize the spans of the bus by
creating your own implementation.| Modifier and Type | Method and Description |
|---|---|
org.axonframework.tracing.Span |
createCreateSagaInstanceSpan(org.axonframework.eventhandling.EventMessage<?> event,
Class<?> sagaType,
String sagaIdentifier)
Creates a span that represents the creation of a new saga instance.
|
org.axonframework.tracing.Span |
createInvokeSagaSpan(org.axonframework.eventhandling.EventMessage<?> event,
Class<?> sagaType,
Saga<?> saga)
Creates a span that represents the invocation of a saga.
|
org.axonframework.tracing.Span createCreateSagaInstanceSpan(org.axonframework.eventhandling.EventMessage<?> event,
Class<?> sagaType,
String sagaIdentifier)
event - The event that triggered the creation of the saga.sagaType - The type of the saga.sagaIdentifier - The identifier of the saga.org.axonframework.tracing.Span createInvokeSagaSpan(org.axonframework.eventhandling.EventMessage<?> event,
Class<?> sagaType,
Saga<?> saga)
event - The event that triggered the invocation of the saga.sagaType - The type of the saga.saga - The saga that will be invoked.Copyright © 2010–2024. All rights reserved.