CQRS.NET  4.0
A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.
Cqrs.Azure.ServiceBus.IMessageSerialiser< TAuthenticationToken > Interface Template Reference

Serialises events and commands. More...

+ Inheritance diagram for Cqrs.Azure.ServiceBus.IMessageSerialiser< TAuthenticationToken >:

Public Member Functions

string SerialiseEvent< TEvent > (TEvent @event)
 Serialise the provided event . More...
 
string SerialiseCommand< TCommand > (TCommand command)
 Serialise the provided command . More...
 
IEvent< TAuthenticationToken > DeserialiseEvent (string @event)
 Deserialise the provided event from its string representation. More...
 
ICommand< TAuthenticationToken > DeserialiseCommand (string command)
 Deserialise the provided command from its string representation. More...
 

Detailed Description

Serialises events and commands.

Template Parameters
TAuthenticationTokenThe Type of the authentication token.