Skip to content

Commit

Permalink
updates for multi-thread transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
codybum committed Mar 3, 2024
1 parent 69fdb9e commit d8be73b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/io/cresco/wsapi/websockets/APIDataPlane.java
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ public void onMessage(Message msg) {

} else if (msg instanceof BytesMessage) {
String transferId = msg.getStringProperty("transfer_id");
//logger.error("INCOMING TRANSFER ID: " + transferId);
//System.out.println("onMessage(Message msg) transferId: " + transferId);
long dataSize = ((BytesMessage) msg).getBodyLength();
byte[] bytes = new byte[(int)dataSize];
Expand Down

0 comments on commit d8be73b

Please sign in to comment.