Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/main/java/io/scalecube/net/Address.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,26 @@ public int port() {
return port;
}

/**
* Returns new address instance with the specified port.
*
* @param port port
* @return address instance
*/
public Address port(int port) {
return Address.create(host, port);
}

/**
* Returns new address instance with applied port offset.
*
* @param portOffset portOffset
* @return address instance
*/
public Address addPortOffset(int portOffset) {
return Address.create(host, port + portOffset);
}

@Override
public boolean equals(Object other) {
if (this == other) {
Expand Down