Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 14, 2019 01:28
Show Gist options
  • Save dcomartin/70c562b9ea530ec36223083e2bdb2c9b to your computer and use it in GitHub Desktop.
Save dcomartin/70c562b9ea530ec36223083e2bdb2c9b to your computer and use it in GitHub Desktop.
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