first
Some checks failed
Reduce Adoc / reduce (push) Failing after 57s
Java Unit Test with Maven / test (push) Failing after 1m42s

This commit is contained in:
2025-12-29 13:59:13 +08:00
commit 2dfed7464e
555 changed files with 35895 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.alibaba.qlexpress4.runtime;
import com.alibaba.qlexpress4.runtime.trace.QTraces;
import java.util.Map;
/**
* Author: DQinYuan
*/
public interface QRuntime {
/**
* get script start time
* @return start time
*/
long scriptStartTimeStamp();
Map<String, Object> attachment();
ReflectLoader getReflectLoader();
QTraces getTraces();
}