com.aerospike.vector.client.HostPort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
This project includes the Java client for Aerospike Vector Search for high-performance data interactions.
The newest version!
package com.aerospike.vector.client;
/**
* Represents a network host with a specified port and a TLS configuration.
* This record is used to store information about network endpoints that may or may not use TLS (Transport Layer Security).
*
* @param address IP address of the AVS
* @param port Port of the AVS server
*/
public record HostPort(String address, int port) {
}