|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IWsResponseListener.java | - | - | - | - |
|
1 | /** | |
2 | * JTRunner is free software; you can redistribute it and/or modify it under the | |
3 | * terms of the GNU General Public License as published by the Free Software | |
4 | * Foundation; either version 2, or (at your option) any later version. | |
5 | */ | |
6 | ||
7 | package jtr.ws; | |
8 | ||
9 | import java.util.HashMap; | |
10 | import java.util.concurrent.Future; | |
11 | ||
12 | /** | |
13 | * This interface must be implemented for receiving callback notifications of the | |
14 | * completion of a service invocation. | |
15 | * | |
16 | * @author Francesco Russo | |
17 | * @version 4.0 | |
18 | * @since 4.0 | |
19 | */ | |
20 | public interface IWsResponseListener { | |
21 | /** | |
22 | * Call-back notification method invoked upon notification of the | |
23 | * accomplishment of a previous service invocation. | |
24 | */ | |
25 | public void handleResponse(IWsResponse resp); | |
26 | } |
|