⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 functionstatefultimecounter.java

📁 High performance DB query
💻 JAVA
字号:
/* * @(#)$Id: FunctionStatefultimecounter.java,v 1.2 2004/07/02 23:59:21 huebsch Exp $ * * Copyright (c) 2001-2004 Regents of the University of California. * All rights reserved. * * This file is distributed under the terms in the attached BERKELEY-LICENSE * file. If you do not find these files, copies can be found by writing to: * Computer Science Division, Database Group, Universite of California, * 617 Soda Hall #1776, Berkeley, CA 94720-1776. Attention: Berkeley License * * Copyright (c) 2003-2004 Intel Corporation. All rights reserved. * * This file is distributed under the terms in the attached INTEL-LICENSE file. * If you do not find these files, copies can be found by writing to: * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, * Berkeley, CA, 94704.  Attention:  Intel License Inquiry. */package pier.helpers.functions;import services.LocalNode;import services.timer.TimerClient;/** * Class FunctionStatefulcounter * */public class FunctionStatefultimecounter implements Function, TimerClient {    private long counter, delta;    private double interval;    private Long result;    private boolean set = false;    /**     * Method evaluate     *     * @param parameters     * @return     */    public Object evaluate(Object[] parameters) {        int params = parameters.length;        if (params == 3) {            // If the counter has not been setup yet, initialize values            if ( !set) {                counter = ((Long) parameters[0]).longValue();                delta = ((Long) parameters[1]).longValue();                interval = ((double) ((Long) parameters[2]).longValue()) / 1000;                result = new Long(counter);                LocalNode.myTimer.schedule(interval, null, this);                set = true;            }            return result;        } else {            return null;        }    }    /**     * Method incrementCounter     */    protected void incrementCounter() {        counter += delta;        result = new Long(counter);    }    /**     * Method cacheable     * @return     */    public boolean cacheable() {        return false;    }    /**     * Method handleClock     *     * @param clockData     */    public void handleClock(Object clockData) {        try {            incrementCounter();            LocalNode.myTimer.schedule(interval, null, this);        } catch (Exception exception) {}    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -