Skip to content

Instantly share code, notes, and snippets.

@philiplaureano
Created June 16, 2019 12:06
Show Gist options
  • Save philiplaureano/cb636c46631700e5774a01e747e12445 to your computer and use it in GitHub Desktop.
Save philiplaureano/cb636c46631700e5774a01e747e12445 to your computer and use it in GitHub Desktop.
The most minimalistic actor system interface for fetching/creating actors
public interface IFetchInstance<TKey, TItem>
{
Option<TItem> Fetch(TKey key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment