2 * Copyright (c) 2017 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.controller.remote.rpc.registry.gossip;
10 import static java.util.Objects.requireNonNull;
12 import akka.actor.Address;
13 import com.google.common.collect.ImmutableMap;
14 import java.io.Serializable;
17 final class GossipEnvelope implements Serializable {
18 private static final long serialVersionUID = 1L;
20 private final Map<Address, Bucket<?>> buckets;
21 private final Address from;
22 private final Address to;
24 GossipEnvelope(final Address from, final Address to, final Map<Address, ? extends Bucket<?>> buckets) {
25 this.to = requireNonNull(to);
26 this.buckets = ImmutableMap.copyOf(buckets);
30 Map<Address, Bucket<?>> buckets() {