예제 #1
0
파일: Future.cs 프로젝트: taqu/Future
 public Promise(T value)
 {
     sharedState_ = new SharedState <T>(value);
 }
예제 #2
0
파일: Future.cs 프로젝트: taqu/Future
 internal Future(SharedState <T> sharedState)
 {
     sharedState_ = sharedState;
 }
예제 #3
0
파일: Future.cs 프로젝트: taqu/Future
 public Promise()
 {
     sharedState_ = new SharedState <T>();
 }