1 /** 2 * Copyright (C) 2000 3 */ 4 5 package org.objectweb.perseus.fos.api; 6 7 import javax.transaction.xa.Xid; 8 9 /** 10 * Defines the method fired when DTP recovery is required. 11 * @author S. Chassande-Barrioz, P. Déchamboux 12 */ 13 public interface FosRecoveryListener { 14 /** 15 * Requests the recovery of DTP transactions for which no local 16 * recovery decision can be made locally. 17 */ 18 void recover(Xid[] txlist); 19 }