com.spikeify.aerospikeql.generate.functions.TopLevel Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of aerospike-ql Show documentation
                Show all versions of aerospike-ql Show documentation
SQL wrapper for Aerospike database
                
            package com.spikeify.aerospikeql.generate.functions;
/**
 * Created by roman on 16/07/15.
 *
 * Top level defines main function that wraps all other function in lua script.
 */
public class TopLevel extends Function {
	private TopLevel() {
		functionName = "main";
		nameArg1 = "stream";
		nameArg2 = "currentTimestamp"; //main function arguments are set in QueryExecute class
		nameArg3 = "runTimeCondition";
		level = 0;
		code = "";
	}
	public static TopLevel factory() {
		TopLevel topLevel = new TopLevel();
		topLevel.setFunction();
		return topLevel;
	}
	private void setFunction() {
		setSignature3Arg();
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy