epctypefiltermbean.java

来自「SUnRDIS网络应用平台,可以在该平台上开发RFID应用,系统.」· Java 代码 · 共 36 行

JAVA
36
字号
/* * EPCTypeFilterMBean.java * * Created on December 15, 2005, 2:29 PM */package com.sun.rfid.filter;import com.sun.autoid.ems.ComponentMBean;/** * This interface extends service bean interface to include methods for * getting information about the operation of the __RfidFilter__.  You * generally don't need to modify this file. */public interface EPCTypeFilterMBean extends ComponentMBean {    /**     * Returns the count of the identifiers discarded by this filter.     *     * @return the number of discarded identifiers     */    public long getDiscardedCount();        /**     * Returns the count of identifiers that passed through this filter.     *     * @return the number of processed identifiers     */    public long getPassCount();        /**     * Resets the filter counters.  Both the pass counter and the discard     * counter are reset as a result of calling this method.     */    public void reset();}

⌨️ 快捷键说明

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