Created
June 16, 2019 12:06
-
-
Save philiplaureano/cb636c46631700e5774a01e747e12445 to your computer and use it in GitHub Desktop.
The most minimalistic actor system interface for fetching/creating actors
This file contains hidden or 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 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