Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Rishabh Maurya <[email protected]>
  • Loading branch information
rishabhmaurya committed Nov 28, 2024
1 parent 49b701e commit 7ef6dc3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
@ExperimentalApi
public interface StreamTicket {
/**
* Returns the ticket ID associated with this stream ticket.
* Returns the ticketId associated with this stream ticket.
*
* @return the ticket ID string
* @return the ticketId string
*/
String getTicketID();
String getTicketId();

/**
* Returns the node ID associated with this stream ticket.
* Returns the nodeId associated with this stream ticket.
*
* @return the node ID string
* @return the nodeId string
*/
String getNodeID();
String getNodeId();

/**
* Serializes this ticket into a Base64 encoded byte array.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
@ExperimentalApi
public interface StreamTicketFactory {
/**
* Generates a new StreamTicket
* Creates a new StreamTicket
*
* @return A new StreamTicket instance
*/
StreamTicket generateTicket();
StreamTicket newTicket();

/**
* Deserializes a StreamTicket from its byte representation.
Expand Down

0 comments on commit 7ef6dc3

Please sign in to comment.