mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-03 00:25:18 +00:00
8 lines
215 B
Java
8 lines
215 B
Java
package com.pqt.client.module.query.query_callback;
|
|
|
|
public interface IIdQueryCallback {
|
|
public void ack(long id);
|
|
public void err(long id, Throwable cause);
|
|
public void ref(long id, Throwable cause);
|
|
}
|