Skip to content

Latest commit

 

History

History
49 lines (20 loc) · 545 Bytes

README.md

File metadata and controls

49 lines (20 loc) · 545 Bytes

GBroker

gRPC based event broker for microservice architecture applications.

[TOC]

Overview

Event broker

Infrastructure

Consumption types

Components

EventBroker.Client

Non ASP.NET Core applications

ASP.NET Core applications

services.AddEventsService();
services.AddEventsHandlers(Assembly fromAssembly);
services.AddEventHandler(Type handlerType);
services.AddEventHandler<THandler>();

EventBroker.Grpc.Client

EventBroker.Grpc.Server

Sample.EventBroker.Api