Zooper.Bee 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Zooper.Bee --version 2.0.0
                    
NuGet\Install-Package Zooper.Bee -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Zooper.Bee" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Zooper.Bee" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Zooper.Bee" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Zooper.Bee --version 2.0.0
                    
#r "nuget: Zooper.Bee, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Zooper.Bee&version=2.0.0
                    
Install Zooper.Bee as a Cake Addin
#tool nuget:?package=Zooper.Bee&version=2.0.0
                    
Install Zooper.Bee as a Cake Tool

Zooper.Bee

<img src="icon.png" alt="Zooper.Bee Logo" width="120" align="right"/>

NuGet Version License: MIT

Zooper.Bee is a fluent, lightweight workflow framework for C# that enables you to build type-safe, declarative business workflows with robust error handling.

Key Features

  • Fluent Builder API: Create workflows with an intuitive, chainable syntax
  • Type-safe: Leverage C#'s static typing for error-resistant workflows
  • Functional Style: Uses an Either monad pattern for clear success/failure handling
  • Composable: Build complex workflows from simple, reusable components
  • Comprehensive: Support for validations, conditional activities, branches, and finally blocks
  • Async-first: First-class support for async/await operations
  • Testable: Workflows built with Zooper.Bee are easy to unit test
  • No Dependencies: Minimal external dependencies (only uses Zooper.Fox)

Installation

dotnet add package Zooper.Bee

Quick Start

Here's a basic example of creating and executing a workflow:

// Define your models
public record OrderRequest(string CustomerId, decimal Amount);
public record OrderPayload(OrderRequest Request, Guid OrderId, bool IsProcessed);
public record OrderConfirmation(Guid OrderId, DateTime ProcessedAt);
public record OrderError(string Code, string Message);

// Create a workflow
var workflow = new WorkflowBuilder<OrderRequest, OrderPayload, OrderConfirmation, OrderError>(
    // Initial payload factory
    request => new OrderPayload(request, Guid.NewGuid(), false),
    // Result selector
    payload => new OrderConfirmation(payload.OrderId, DateTime.UtcNow))

    // Add validations
    .Validate(request =>
        string.IsNullOrEmpty(request.CustomerId)
            ? Option<OrderError>.Some(new OrderError("INVALID_CUSTOMER", "Customer ID required"))
            : Option<OrderError>.None())

    // Add activities
    .Do(ProcessPayment)
    .Do(UpdateInventory)

    // Add conditional activities
    .DoIf(
        payload => payload.Request.Amount > 1000,
        ApplyHighValueDiscount)

    // Add finally activities
    .Finally(LogOrderProcessing)

    // Build the workflow
    .Build();

// Execute the workflow
var result = await workflow.Execute(new OrderRequest("CUST123", 299.99));

// Handle the result
if (result.IsRight)
{
    var confirmation = result.Right;
    Console.WriteLine($"Order {confirmation.OrderId} processed at {confirmation.ProcessedAt}");
}
else
{
    var error = result.Left;
    Console.WriteLine($"Error: {error.Code} - {error.Message}");
}

Core Concepts

Workflow

A workflow represents a sequence of operations that processes a request and produces either a success result or an error. It's created using the WorkflowBuilder.

WorkflowBuilder

The builder provides a fluent API for constructing workflows:

var workflow = new WorkflowBuilder<TRequest, TPayload, TSuccess, TError>(
    contextFactory,  // Function that creates the initial payload from the request
    resultSelector)  // Function that creates the success result from the final payload
    .Validate(...)   // Add validations
    .Do(...)         // Add activities
    .DoIf(...)       // Add conditional activities
    .Branch(...)     // Add branching logic
    .Finally(...)    // Add finally activities
    .Build();        // Build the workflow

Validations

Validations check if the request is valid before processing begins. They return an Option<TError>:

.Validate(request =>
    string.IsNullOrEmpty(request.CustomerId)
        ? Option<OrderError>.Some(new OrderError("INVALID_CUSTOMER", "Customer ID required"))
        : Option<OrderError>.None())

Activities

Activities are the primary building blocks of workflows. They process the payload and return either a success or failure result:

private static Either<OrderError, OrderPayload> ProcessPayment(OrderPayload payload)
{
    // Process payment logic

    if (successful)
    {
        var updatedPayload = payload with { IsProcessed = true };
        return Either<OrderError, OrderPayload>.FromRight(updatedPayload);
    }
    else
    {
        return Either<OrderError, OrderPayload>.FromLeft(
            new OrderError("PAYMENT_FAILED", "Failed to process payment"));
    }
}

Conditional Activities

Execute activities only when specific conditions are met:

.DoIf(
    payload => payload.Request.Amount > 1000,  // Condition
    ApplyHighValueDiscount)                    // Activity

Branches

Create branches for more complex conditional logic:

.Branch(payload => payload.IsExpressShipping)
    .Do(CalculateExpressShippingFee)
    .Do(PrioritizeOrder)
    .EndBranch()
.Branch(payload => !payload.IsExpressShipping)
    .Do(CalculateStandardShippingFee)
    .EndBranch()

Finally Blocks

Activities that execute regardless of workflow success or failure:

.Finally(LogOrderProcessing)

Advanced Usage

Asynchronous Operations

Zooper.Bee has first-class support for async operations:

private static async Task<Either<OrderError, OrderPayload>> ProcessPaymentAsync(
    OrderPayload payload, CancellationToken cancellationToken)
{
    var result = await paymentService.AuthorizePaymentAsync(
        payload.Request.Amount,
        cancellationToken);

    if (result.Success)
    {
        var updatedPayload = payload with { IsProcessed = true };
        return Either<OrderError, OrderPayload>.FromRight(updatedPayload);
    }
    else
    {
        return Either<OrderError, OrderPayload>.FromLeft(
            new OrderError("PAYMENT_FAILED", result.ErrorMessage));
    }
}

Composition

Workflows can be composed by calling one workflow from another:

private static async Task<Either<OrderError, OrderPayload>> RunSubWorkflow(
    OrderPayload payload, CancellationToken cancellationToken)
{
    var subWorkflow = CreateSubWorkflow();
    var result = await subWorkflow.Execute(payload.SubRequest, cancellationToken);

    return result.Match(
        error => Either<OrderError, OrderPayload>.FromLeft(error),
        success => Either<OrderError, OrderPayload>.FromRight(
            payload with { SubResult = success })
    );
}

Examples

Check out the Zooper.Bee.Examples project for comprehensive examples including:

  • Order processing workflow
  • Different execution patterns
  • Complex branching logic
  • Error handling scenarios

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

  • Zooper.Fox - Functional programming primitives used by Zooper.Bee
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Zooper.Bee:

Package Downloads
Zooper.Bee.MediatR

A .NET library for building robust, functional workflows and processing pipelines.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.3.0 175 4/24/2025
3.2.1 164 4/24/2025
3.2.0 152 4/24/2025
3.1.0 130 4/23/2025
3.0.0 155 4/21/2025
2.2.0 148 4/21/2025
2.1.0 152 4/21/2025
2.0.0 76 4/19/2025
1.0.0 145 4/18/2025