groupselector.java

来自「java pos,你可以直接编译运行,」· Java 代码 · 共 28 行

JAVA
28
字号
/* * Copyright (c) 2004 jPOS.org  * * See terms of license at http://jpos.org/license.html * */package org.jpos.transaction;import java.io.Serializable;/** * GroupSelector can be implemented by a TransactionParticipant in * order to switch the transaction to a new group of participants. * * @author apr * @since 1.4.7 * @see TransactionParticipant */public interface GroupSelector extends TransactionParticipant {    /**     * @param id transaction id     * @param context transaction context      * @return group name or null for no-action     */    public String select (long id, Serializable context);}

⌨️ 快捷键说明

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