All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensearch.migrations.replay.util.TrafficChannelKeyFormatter Maven / Gradle / Ivy

package org.opensearch.migrations.replay.util;

import java.util.StringJoiner;

public class TrafficChannelKeyFormatter {
    private TrafficChannelKeyFormatter() {}

    public static String format(String nodeId, String connectionId) {
        return new StringJoiner(".").add(nodeId).add(connectionId).toString();
    }

    public static String format(String nodeId, String connectionId, int trafficStreamIndex) {
        return new StringJoiner(".").add(nodeId).add(connectionId).add("" + trafficStreamIndex).toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy