org.opensearch.migrations.replay.traffic.source.ITrafficStreamWithKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trafficReplayer Show documentation
Show all versions of trafficReplayer Show documentation
Everything opensearch migrations
package org.opensearch.migrations.replay.traffic.source;
import org.opensearch.migrations.replay.datatypes.ITrafficStreamKey;
import org.opensearch.migrations.trafficcapture.protos.TrafficStream;
public interface ITrafficStreamWithKey {
ITrafficStreamKey getKey();
TrafficStream getStream();
}