| 6 |
duanzhiquan |
1 |
/**
|
|
|
2 |
* =========================================================================
|
|
|
3 |
* Bench4Q version 1.2.1
|
|
|
4 |
* =========================================================================
|
|
|
5 |
*
|
|
|
6 |
* Bench4Q is available on the Internet at http://forge.ow2.org/projects/jaspte
|
|
|
7 |
* You can find latest version there.
|
|
|
8 |
*
|
|
|
9 |
* Distributed according to the GNU Lesser General Public Licence.
|
|
|
10 |
* This library is free software; you can redistribute it and/or modify it
|
|
|
11 |
* under the terms of the GNU Lesser General Public License as published by
|
|
|
12 |
* the Free Software Foundation; either version 2.1 of the License, or any
|
|
|
13 |
* later version.
|
|
|
14 |
*
|
|
|
15 |
* SEE Copyright.txt FOR FULL COPYRIGHT INFORMATION.
|
|
|
16 |
*
|
|
|
17 |
* This source code is distributed "as is" in the hope that it will be
|
|
|
18 |
* useful. It comes with no warranty, and no author or distributor
|
|
|
19 |
* accepts any responsibility for the consequences of its use.
|
|
|
20 |
*
|
|
|
21 |
*
|
|
|
22 |
* This version is a based on the implementation of TPC-W from University of Wisconsin.
|
|
|
23 |
* This version used some source code of The Grinder.
|
|
|
24 |
*
|
|
|
25 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
26 |
* * Initial developer(s): Zhiquan Duan.
|
|
|
27 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
28 |
*
|
|
|
29 |
*/
|
|
|
30 |
package org.bench4Q.common.processidentity;
|
|
|
31 |
|
|
|
32 |
/**
|
|
|
33 |
* Interface for enquiring about an agent process.
|
|
|
34 |
*
|
|
|
35 |
*/
|
|
|
36 |
public interface AgentResultReport extends ResultReport {
|
|
|
37 |
|
|
|
38 |
/**
|
|
|
39 |
* Return the unique process identity.
|
|
|
40 |
*
|
|
|
41 |
* @return The process identity.
|
|
|
42 |
*/
|
|
|
43 |
AgentIdentity getAgentIdentity();
|
|
|
44 |
}
|