Example #1
0
 public Procedures(EmbeddedProxySPI proxySPI, ThrowingConsumer <Procedures, ProcedureException> builtin, File pluginDir, Log log, ProcedureConfig config)
 {
     this._builtin     = builtin;
     this._pluginDir   = pluginDir;
     this._log         = log;
     this._typeMappers = new TypeMappers(proxySPI);
     this._compiler    = new ReflectiveProcedureCompiler(_typeMappers, _safeComponents, _allComponents, log, config);
 }
 public MethodSignatureCompiler(TypeMappers typeMappers)
 {
     this._typeMappers = typeMappers;
 }
Example #3
0
 public OutputMappers(TypeMappers typeMappers)
 {
     this._typeMappers = typeMappers;
 }