Package org.voltdb.groovy

Examples of org.voltdb.groovy.GroovyScriptProcedureDelegate


                    }
                    else if (m_language == Language.GROOVY) {
                        if (HOST_TRACE_ENABLED) {
                            log.trace("invoking... groovy closure on class=" + getClass().getName());
                        }
                        GroovyScriptProcedureDelegate proc = (GroovyScriptProcedureDelegate)m_procedure;
                        Object rawResult = proc.invoke(paramList);
                        results = getResultsFromRawResults(rawResult);
                    }
                    log.trace("invoked");
                }
                catch (InvocationTargetException itex) {
View Full Code Here


                    return builder.build();
                }

                @Override
                public Map<String,Object> visitGroovy(Class<?> p) throws VoltCompilerException {
                    GroovyScriptProcedureDelegate scripDelegate;
                    try {
                        scripDelegate = new GroovyScriptProcedureDelegate(p);
                    } catch (GroovyScriptProcedureDelegate.SetupException tupex) {
                        throw compiler.new VoltCompilerException(tupex.getMessage());
                    }
                    return scripDelegate.getIntrospectedFields();
                }
            };
    };
View Full Code Here

TOP

Related Classes of org.voltdb.groovy.GroovyScriptProcedureDelegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.