source: trunk/autoquest-httpmonitor/src/main/java/de/ugoe/cs/autoquest/httpmonitor/IdGenerator.java @ 1991

Last change on this file since 1991 was 1991, checked in by pharms, 9 years ago
  • added ordering id for requests and responses
File size: 1.3 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.httpmonitor;
16
17/**
18 * <p>
19 * This is the default interface for an id generator that generates different ids on each new call
20 * of {@link #getNextId()};
21 * </p>
22 *
23 * @author Patrick Harms
24 */
25public interface IdGenerator extends HttpMonitorComponent {
26
27    /**
28     * <p>
29     * upon each call, this method returns a new id. The ids are returned so that they can be
30     * ordered. This means, a new id is always larger than the previous one. But it is not
31     * required, that the next id is larger by one than the previous one.
32     * </p>
33     *
34     * @return the next unique id.
35     */
36    long getNextId();
37
38}
Note: See TracBrowser for help on using the repository browser.