blob: 825479b5bf8a725763e2e07eeebc54e7cf12f2af [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
toma7083182014-09-25 21:38:03 -070016package org.onlab.nio;
17
tom1ae3d162014-09-26 09:38:16 -070018import static com.google.common.base.Preconditions.checkNotNull;
19
toma7083182014-09-25 21:38:03 -070020/**
tom1ae3d162014-09-26 09:38:16 -070021 * Test message for measuring rate and round-trip latency.
toma7083182014-09-25 21:38:03 -070022 */
23public class TestMessage extends AbstractMessage {
24
tom1ae3d162014-09-26 09:38:16 -070025 private final byte[] padding;
toma7083182014-09-25 21:38:03 -070026
tom1ae3d162014-09-26 09:38:16 -070027 private final long requestorTime;
28 private final long responderTime;
toma7083182014-09-25 21:38:03 -070029
30 /**
31 * Creates a new message with the specified data.
32 *
tom1ae3d162014-09-26 09:38:16 -070033 * @param requestorTime requester time
34 * @param responderTime responder time
35 * @param padding message padding
toma7083182014-09-25 21:38:03 -070036 */
tom1ae3d162014-09-26 09:38:16 -070037 TestMessage(int length, long requestorTime, long responderTime, byte[] padding) {
38 this.length = length;
39 this.requestorTime = requestorTime;
40 this.responderTime = responderTime;
41 this.padding = checkNotNull(padding, "Padding cannot be null");
toma7083182014-09-25 21:38:03 -070042 }
43
tom1ae3d162014-09-26 09:38:16 -070044 public long requestorTime() {
45 return requestorTime;
46 }
47
48 public long responderTime() {
49 return responderTime;
50 }
51
52 public byte[] padding() {
53 return padding;
toma7083182014-09-25 21:38:03 -070054 }
55
56}