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

rpc.turbo.config.AddressWithWeight Maven / Gradle / Ivy

The newest version!
package rpc.turbo.config;

import java.nio.charset.StandardCharsets;

import rpc.turbo.config.HostPort;
import rpc.turbo.util.UnsafeStringUtils;

public class AddressWithWeight {
	public final HostPort address;
	public final int weight;

	public AddressWithWeight(HostPort address, int weight) {
		this.address = address;
		this.weight = weight;
	}

	public AddressWithWeight(byte[] bytes) {
		String str = new String(bytes, StandardCharsets.UTF_8);
		String[] array = str.split("@");

		this.address = new HostPort(array[0]);
		this.weight = Integer.parseInt(array[1]);
	}

	public byte[] toBytes() {
		return UnsafeStringUtils.getUTF8Bytes(toString());
	}

	@Override
	public String toString() {
		return address + "@" + weight;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy