/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.api.context.notification; /** * Provides callbacks for notifying when a flow call from another flow is started or completed. * * @since 3.8.0 */ public interface FlowTraceManager { /** * Handles the start of the passed flowName for the given event. * * @param notificationInfo the notification information about the event for which the flow is being started * @param flowName the name of the flow that is about to start */ void onFlowStart(EnrichedNotificationInfo notificationInfo, String flowName); /** * Handles the completion of the current flow for the given event. * * @param notificationInfo the notification information about the event for which the flow is being completed */ void onFlowComplete(EnrichedNotificationInfo notificationInfo); }