Esempio n. 1
0
 public IFuture Curry(ParamDict paramDict)
 {
     IFuture[] futureParams = Array.ConvertAll <IFuturePrototype, IFuture>(prototypeParams,
                                                                           (IFuturePrototype p) => p.Curry(paramDict));
     return(new ApplyFuture(verb, futureParams));
 }
 public IFuture Curry(ParamDict paramDict)
 {
     return(this);
 }
Esempio n. 3
0
		public IFuture Curry(ParamDict paramDict)
		{
			return new ConstantFuture(paramDict[this.name]);
		}
 public IFuture Curry(ParamDict paramDict)
 {
     return(new OpenDocumentSensitivePrioritizedFuture(this.prioritizer, this.prototype.Curry(paramDict), this.openDocumentFuture));
 }
Esempio n. 5
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(Asynchronizer.MakeFuture(this.scheduler, this.innerPrototype.Curry(paramDict)));
 }
Esempio n. 6
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(new DiskCacheFuture(this.cache, this.prototype.Curry(paramDict)));
 }
Esempio n. 7
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(MakeFuture(scheduler, innerPrototype.Curry(paramDict)));
 }
Esempio n. 8
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(new TransparencyFuture(this.transparencyOptions, this.antialiasedPrototype.Curry(paramDict), this.exactColorPrototype.Curry(paramDict)));
 }