Skip to content

Instantly share code, notes, and snippets.

@Maarten88
Last active March 31, 2017 11:13
Show Gist options
  • Save Maarten88/ec7966bb3ac8debf329724db96962591 to your computer and use it in GitHub Desktop.
Save Maarten88/ec7966bb3ac8debf329724db96962591 to your computer and use it in GitHub Desktop.
[HttpPost("~/incrementcounter")]
public async Task<ActionResult> IncrementCounter()
{
var grain = GrainClient.GrainFactory.GetGrain<ICounterGrain>(this.sessionId);
await grain.IncrementCounter();
return Ok();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment