// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.clustercontroller.core.rpc; import com.yahoo.vespa.clustercontroller.core.ClusterStateBundle; /** * Provides opaque encoding and decoding of ClusterStateBundles for transmission over RPC. * * Implementations may choose to compress the encoded representation of the bundle. * * It is important that the input given to decode() is exactly equal to that given from * encode() for the results to be correct. Implementations must ensure that this information * is enough to losslessly reconstruct the full encoded ClusterStateBundle. */ public interface ClusterStateBundleCodec { EncodedClusterStateBundle encode(ClusterStateBundle stateBundle); ClusterStateBundle decode(EncodedClusterStateBundle encodedClusterStateBundle); }