Skip to content

Commit

Permalink
Enhanced Address with new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Aug 21, 2024
1 parent b4e3028 commit c1e9d3b
Showing 1 changed file with 20 additions and 0 deletions.
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

0 comments on commit c1e9d3b

Please sign in to comment.