frostfs-sdk-java/client/src/main/java/info/frostfs/sdk/placement/NodeAttributePair.java
Ori Bruk 908e014152
All checks were successful
DCO / DCO (pull_request) Successful in 33s
Verify code phase / Verify code (pull_request) Successful in 1m52s
[#52] Add placement vector
Signed-off-by: Ori Bruk <o.bruk@yadro.com>
2025-04-22 17:54:10 +03:00

15 lines
331 B
Java

package info.frostfs.sdk.placement;
import info.frostfs.sdk.dto.netmap.NodeInfo;
import lombok.Getter;
@Getter
public class NodeAttributePair {
private final String attr;
private final NodeInfo[] nodes;
NodeAttributePair(String attr, NodeInfo[] nodes) {
this.attr = attr;
this.nodes = nodes;
}
}