Beispiel #1
0
 static public CompileTimeCache <T, P1, P2, P3> NewCompileTimeCache <T, P1, P2, P3>(this CacheManager item, string i, Husker <T> h, Operation <T, P1, P2, P3> o)
     where P1 : Identifiable
     where P2 : Identifiable
     where P3 : Identifiable
 {
     return(item.AddAndGetCache(new CompileTimeCache <T, P1, P2, P3>(i, h, o)));
 }
Beispiel #2
0
 static public CompileTimeCache <T> NewCompileTimeCache <T>(this CacheManager item, string i, Husker <T> h, Operation <T> o)
 {
     return(item.AddAndGetCache(new CompileTimeCache <T>(i, h, o)));
 }