All Projects → AMalininHere → camunda-worker-dotnet

AMalininHere / camunda-worker-dotnet

Licence: MIT License
Ultimate solution to connect your ASP.NET Core application to Camunda external tasks

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to camunda-worker-dotnet

micronaut-camunda-external-client
This open source project allows you to easily integrate Camunda's External Task Clients into Micronaut projects: simply add a dependency in your Micronaut project
Stars: ✭ 19 (-64.15%)
Mutual labels:  camunda, external-task
RCM
RCM is a simple CRM application designed for Auto Parts Store made with ASP.NET Core based on DDD, CQRS and SOLID Principles.
Stars: ✭ 29 (-45.28%)
Mutual labels:  asp-net-core
MediatrTutorial
CQRS implementation in ASP.NET Core using MediatR in .NET 5
Stars: ✭ 88 (+66.04%)
Mutual labels:  asp-net-core
SignalR-Core-SqlTableDependency
Shows how the new SignalR Core works with hubs and sockets, also how it can integrate with SqlTableDependency API.
Stars: ✭ 36 (-32.08%)
Mutual labels:  asp-net-core
AspNet-Core-REST-Service
VS2017/VS2019 project template for ASP.Net Core 3.1/5.0 to create fully functional production ready RESTful services
Stars: ✭ 57 (+7.55%)
Mutual labels:  asp-net-core
docker-workshop-1
Beginning workshop for using Docker, and focuses on using it for development. It can be self-guided or delivered to a group (see the linked slide deck)
Stars: ✭ 20 (-62.26%)
Mutual labels:  asp-net-core
Blazor.Pagination
A reusable pagination component for Blazor.
Stars: ✭ 27 (-49.06%)
Mutual labels:  asp-net-core
ASPCore.BlazorCrud
CRUD Using Blazor And Entity Framework Core
Stars: ✭ 39 (-26.42%)
Mutual labels:  asp-net-core
workit
Extensible worker for Node.js that works with both Zeebe and Camunda BPM platforms powered by TypeScript
Stars: ✭ 51 (-3.77%)
Mutual labels:  camunda
coreddd
A set of open-source .NET libraries helping with domain-driven design (DDD) and CQRS
Stars: ✭ 68 (+28.3%)
Mutual labels:  asp-net-core
Home
Asp.net core Mvc Controls Toolkit
Stars: ✭ 33 (-37.74%)
Mutual labels:  asp-net-core
BlazorWasmWithDocker
Companion code sample for my blog post - Containerising a Blazor WebAssembly App
Stars: ✭ 16 (-69.81%)
Mutual labels:  asp-net-core
car-rental
CarRental Project
Stars: ✭ 13 (-75.47%)
Mutual labels:  asp-net-core
UrlBase64
A standards-compliant implementation of web/url-safe base64 encoding and decoding for .NET targets
Stars: ✭ 25 (-52.83%)
Mutual labels:  asp-net-core
QueryNinja
Framework for dynamic query building regardless of the source and target.
Stars: ✭ 19 (-64.15%)
Mutual labels:  asp-net-core
vscode-csharp-snippets
Extension of C# Snippets for Visual Studio Code
Stars: ✭ 22 (-58.49%)
Mutual labels:  asp-net-core
OrdersManagementSystem
Project demonstrates usage of Prism composition library, Material design library, SQL Server, Entity Framework in WPF application
Stars: ✭ 29 (-45.28%)
Mutual labels:  asp-net-core
TgTranslator
Telegram bot that removes language barrier between people in groups
Stars: ✭ 32 (-39.62%)
Mutual labels:  asp-net-core
BookCart
An e-commerce application for an online book store.
Stars: ✭ 116 (+118.87%)
Mutual labels:  asp-net-core
simple-blog-engine-for-asp-net-core
A simple blog engine for ASP.NET Core developers.
Stars: ✭ 15 (-71.7%)
Mutual labels:  asp-net-core

Camunda.Worker

codecov NuGet

Example

[HandlerTopics("sayHello", LockDuration = 10_000)]
[HandlerVariables("USERNAME")]
public class SayHelloHandler : IExternalTaskHandler
{
    public async Task<IExecutionResult> HandleAsync(ExternalTask externalTask, CancellationToken cancellationToken)
    {
        var username = externalTask.Variables["USERNAME"].Value;

        await Task.Delay(1000);

        return new CompleteResult(new Dictionary<string, Variable>
        {
            ["MESSAGE"] = Variable.String($"Hello, {username}!")
        });
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].