blob: 9deec669bd3603af4fbcb7e92187dec18bcf9cd2 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Aaron Kruglikov1b727382016-02-09 16:17:47 -08002 * Copyright 2016 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 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -080016package org.onosproject.store.cluster.messaging.impl;
Yuta HIGUCHI0a0b9e42015-02-11 16:57:12 -080017
18import com.google.common.base.MoreObjects;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080019import org.onlab.util.ByteArraySizeHashPrinter;
20import org.onosproject.store.cluster.messaging.Endpoint;
Yuta HIGUCHI0a0b9e42015-02-11 16:57:12 -080021
Madan Jampaniab6d3112014-10-02 16:30:14 -070022/**
23 * Internal message representation with additional attributes
24 * for supporting, synchronous request/reply behavior.
25 */
Madan Jampanic26eede2015-04-16 11:42:16 -070026public final class InternalMessage {
Madan Jampaniab6d3112014-10-02 16:30:14 -070027
Madan Jampanic26eede2015-04-16 11:42:16 -070028 private final long id;
29 private final Endpoint sender;
30 private final String type;
31 private final byte[] payload;
Yuta HIGUCHIc65f5122014-10-07 10:05:59 -070032
Madan Jampanic26eede2015-04-16 11:42:16 -070033 public InternalMessage(long id, Endpoint sender, String type, byte[] payload) {
Yuta HIGUCHI91768e32014-11-22 05:06:35 -080034 this.id = id;
35 this.sender = sender;
36 this.type = type;
37 this.payload = payload;
38 }
39
Madan Jampaniab6d3112014-10-02 16:30:14 -070040 public long id() {
41 return id;
42 }
43
Madan Jampani49115e92015-03-14 10:43:33 -070044 public String type() {
Madan Jampaniab6d3112014-10-02 16:30:14 -070045 return type;
46 }
47
48 public Endpoint sender() {
49 return sender;
50 }
51
Madan Jampani53e44e62014-10-07 12:39:51 -070052 public byte[] payload() {
Madan Jampaniab6d3112014-10-02 16:30:14 -070053 return payload;
54 }
55
Yuta HIGUCHI0a0b9e42015-02-11 16:57:12 -080056 @Override
57 public String toString() {
58 return MoreObjects.toStringHelper(this)
59 .add("id", id)
60 .add("type", type)
61 .add("sender", sender)
62 .add("payload", ByteArraySizeHashPrinter.of(payload))
63 .toString();
64 }
Yuta HIGUCHI92626c02014-10-06 15:46:18 -070065}