Skip to content

Instantly share code, notes, and snippets.

View LarsKemmann's full-sized avatar

Lars Kemmann LarsKemmann

View GitHub Profile
@LarsKemmann
LarsKemmann / PublisherActor.cs
Last active November 13, 2016 18:57
Service Fabric pub/sub using ActorEvents
public interface IPublisherEvents
{
void OnPublished(object value);
}
public interface IPublisher : IActor, IActorEventPublisher<IPublisherEvents>
{
Task PublishAsync(object value);
}