This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Logging; | |
using Orleans; | |
using Orleans.Configuration; | |
using Orleans.Hosting; | |
using System; | |
using System.Threading.Tasks; | |
namespace Orleans2GettingStarted | |
{ | |
internal static class ClientDevelopmentHelpers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IQueryHandler<in TQuery, QueryResult> // for some reason out parameters can't be 'out', I probably need to read up why | |
{ | |
/// result indicates success? | |
bool Handle(TQuery query, out TQueryResult); | |
} | |