コード例 #1
0
 public static void AsyncGetAndForget <T>(this INativefier <T> self, string key, Action <T> onCompleted)
 {
     self.AsyncGet(key, onCompleted, true);
 }
コード例 #2
0
 public static Task <T> AsyncGet <T>(this INativefier <T> self, string key)
 {
     return(self.AsyncGet(key, null, true));
 }
コード例 #3
0
 public static Task <T> AsyncGet <T>(this INativefier <T> self, string key, bool startTaskImmediately)
 {
     return(self.AsyncGet(key, null, startTaskImmediately));
 }
コード例 #4
0
 public static Task <T> AsyncGet <T>(this INativefier <T> self, string key, Action <T> onCompleted)
 {
     return(self.AsyncGet(key, onCompleted, true));
 }