Skip to content

Commit 7ef6dc3

Browse files
committed
Address PR comments
Signed-off-by: Rishabh Maurya <[email protected]>
1 parent 49b701e commit 7ef6dc3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

libs/arrow-spi/src/main/java/org/opensearch/arrow/spi/StreamTicket.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
@ExperimentalApi
1919
public interface StreamTicket {
2020
/**
21-
* Returns the ticket ID associated with this stream ticket.
21+
* Returns the ticketId associated with this stream ticket.
2222
*
23-
* @return the ticket ID string
23+
* @return the ticketId string
2424
*/
25-
String getTicketID();
25+
String getTicketId();
2626

2727
/**
28-
* Returns the node ID associated with this stream ticket.
28+
* Returns the nodeId associated with this stream ticket.
2929
*
30-
* @return the node ID string
30+
* @return the nodeId string
3131
*/
32-
String getNodeID();
32+
String getNodeId();
3333

3434
/**
3535
* Serializes this ticket into a Base64 encoded byte array.

libs/arrow-spi/src/main/java/org/opensearch/arrow/spi/StreamTicketFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
@ExperimentalApi
1919
public interface StreamTicketFactory {
2020
/**
21-
* Generates a new StreamTicket
21+
* Creates a new StreamTicket
2222
*
2323
* @return A new StreamTicket instance
2424
*/
25-
StreamTicket generateTicket();
25+
StreamTicket newTicket();
2626

2727
/**
2828
* Deserializes a StreamTicket from its byte representation.

0 commit comments

Comments
 (0)