Package com.espertech.esper.epl.expression

Examples of com.espertech.esper.epl.expression.ExprTimePeriodEvalDeltaConstMsec


                millisecondsBeforeExpiry = Math.round(1000d * param.doubleValue());
            }
            else {
                millisecondsBeforeExpiry = 1000 * param.longValue();
            }
            timeDelta = new ExprTimePeriodEvalDeltaConstMsec(millisecondsBeforeExpiry);
        }
        if (timeDelta.deltaMillisecondsAdd(0) < 1) {
            throw new ViewParameterException(viewName + " view requires a size of at least 1 msec");
        }
        return timeDelta;
View Full Code Here

TOP

Related Classes of com.espertech.esper.epl.expression.ExprTimePeriodEvalDeltaConstMsec

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.