Skip to content

Latest commit

 

History

History
105 lines (62 loc) · 6.76 KB

File metadata and controls

105 lines (62 loc) · 6.76 KB
title Manipulate pipeline with behaviors
summary Manipulating the message-handling pipeline with behaviors
component Core
versions [4.0,)
reviewed 2024-12-31
related
nservicebus/pipeline/steps-stages-connectors
redirects
nservicebus/pipeline/customizing
nservicebus/pipeline/customizing-v5
nservicebus/pipeline/customizing-v6

Pipelines are made up of a group of steps acting on the same level of abstraction. This allows several scenarios, such as:

  • Defining a step that works with the "incoming physical" message before it has been deserialized.
  • Defining a step executed before and after each handler invocation (keeping in mind that there can be multiple message handlers per message).

Extending the pipeline is done with a custom behavior implementing Behavior<TContext>. TContext is the context of the stage to which the behavior belongs. A list of possible pipeline stages to which a behavior can be attached can be found in the Steps, Stages, and Connectors article.

Custom behaviors should not rely on ordering within the same stage. If they require access to information generated by a previous stage, place them in the next pipeline stage. If they must create information that other behaviors rely on, place them in appropriate stages before those behaviors.

snippet: SamplePipelineBehavior

In the above code snippet, the SampleBehavior class derives from the Behavior contract and targets the incoming context. This tells the framework to execute this behavior after the incoming raw message has been deserialized and a matching message type has been found. At runtime, the pipeline will call each registered behavior's Invoke method, passing in as arguments the current message context and an action to invoke the next behavior in the pipeline.

Warning

Each behavior is responsible for calling the next step in the pipeline chain by invoking next().

Add a new step

To add a custom behavior to the pipeline, register it from the endpoint configuration:

snippet: RegisterBehaviorEndpointConfiguration

Behaviors can also be registered from a Feature as shown below:

snippet: RegisterBehaviorFromFeature

Warning

Behaviors are only created once, and the same instance is reused for every pipeline invocation. Consequently, every behavior dependency behaves as a singleton, even if a different option was specified during dependency injection configuration. Furthermore, the behavior and all dependencies must be thread-safe. Storing state in a behavior instance should be avoided since it will cause the state to be shared across all message handling sessions. This could lead to unwanted side effects.

Replace an existing step

To replace the implementation of an existing step, substitute it with a custom behavior:

snippet: ReplacePipelineStep

A step ID must be provided to replace the existing step. The most reliable way to determine the step ID is to find the step definition in the NServiceBus source code.

Note that step IDs are hard-coded strings and may change in the future, resulting in an unexpected behavior change. When replacing built-in steps, create automatic tests to detect potential ID changes or step removal.

Note

Steps can also be registered from a feature.

partial: pipelinecheck

partial: registerorreplace

partial: disable

Exception handling

Exceptions thrown from a behavior's Invoke method bubble up the chain. If any behavior does not handle the exception, the message is considered faulty, which results in putting the message back in the queue (and rolling back the transaction when configured) or moving it to the error queue (depending on the endpoint's recoverability configuration).

MessageDeserializationException

If a message fails to deserialize, a MessageDeserializationException exception is thrown by the DeserializeLogicalMessagesBehavior behavior. In this case, the message is immediately moved to the error queue to avoid blocking the system with poison messages.

Skip serialization

When writing extensions to the pipeline, it may be necessary to take control of the serialization or skip it entirely. One example is the callbacks feature. Callbacks skip serialization for integers and enums; instead, embed them in the message headers.

To skip serialization, implement a behavior that targets IOutgoingLogicalMessageContext. For example, the following behavior skips serialization if the message is an integer, placing it in a header instead.

snippet: SkipSerialization

On the receiving side, this header can then be extracted, and decisions on the incoming message processing pipeline can be made based on it.

Sharing data between behaviors

Sometimes, a parent behavior might need to pass information on to a child behavior and vice versa. The context parameter of a behavior's Invoke method facilitates passing data between behaviors. The context is similar to a shared dictionary, which allows for adding and retrieving information from different behaviors.

snippet: SharingBehaviorData

Note

Contexts are not thread-safe.

Note

In NServiceBus version 6 and above, the context respects the stage hierarchy and only allows new entries to be added in the scope of the current context. A child behavior (later in the pipeline chain) can read and even modify entries set by a parent behavior (earlier in the pipeline chain), but entries added by the child cannot be accessed by the parent.

Injecting dependencies into behaviors

snippet: InjectingDependencies

Dependencies injected into the constructor of a behavior become singletons regardless of their actual scope on the dependency injection container. In order to create instances per request or scoped dependencies, it is required to use the IServiceProvider that is available as Builder property on the context.

The service provider available via the context varies depending on the pipeline stage. Pipeline stages used within the context of an incoming message exposes a new child service provider created for each incoming message. All other use cases expose the root service provider.

Behaviors in the outgoing pipeline stage exhibit different behaviors depending on how they are invoked. For example, when an outgoing behavior is invoked within the context of a message session, the root service provider is exposed. In contrast, when the same outgoing behavior is invoked within the scope of an incoming message, the child service provider for the incoming message will be used.

partial: options

include: mutators-versus-behaviors