Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 14, 2019 01:28
Embed
What would you like to do?
using System.Threading.Tasks;
using Orleans.Concurrency;
namespace Orleans.AspNetCore.Demo.Grains
{
public interface IHealthCheckGrain : IGrainWithGuidKey
{
Task<bool> IsHealthy();
}
[StatelessWorker(1)]
public class HealthCheckGrain : Grain, IHealthCheckGrain
{
public Task<bool> IsHealthy()
{
return Task.FromResult(true);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment