-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Add performance test 2. Add orders update event (v2) 3. Refactor: rename market full MBP event 4. Delete CHANGE_LOG section in READE as it is duplicate with CHANGE_LOG and Github releases module
- Loading branch information
Showing
16 changed files
with
514 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/com/huobi/client/model/event/OrdersCancellationEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.huobi.client.model.event; | ||
|
||
@SuppressWarnings("serial") | ||
public class OrdersCancellationEvent extends OrdersUpdateEvent { | ||
|
||
private String remainAmt; | ||
|
||
private Long lastActTime; | ||
|
||
public String getRemainAmt() { | ||
return remainAmt; | ||
} | ||
|
||
public void setRemainAmt(String remainAmt) { | ||
this.remainAmt = remainAmt; | ||
} | ||
|
||
public Long getLastActTime() { | ||
return lastActTime; | ||
} | ||
|
||
public void setLastActTime(Long lastActTime) { | ||
this.lastActTime = lastActTime; | ||
} | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
src/main/java/com/huobi/client/model/event/OrdersCreationEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.huobi.client.model.event; | ||
|
||
@SuppressWarnings("serial") | ||
public class OrdersCreationEvent extends OrdersUpdateEvent { | ||
|
||
private String orderPrice; | ||
|
||
private String orderSize; | ||
|
||
private String type; | ||
|
||
private Long orderCreateTime; | ||
|
||
public String getOrderPrice() { | ||
return orderPrice; | ||
} | ||
|
||
public void setOrderPrice(String orderPrice) { | ||
this.orderPrice = orderPrice; | ||
} | ||
|
||
public String getOrderSize() { | ||
return orderSize; | ||
} | ||
|
||
public void setOrderSize(String orderSize) { | ||
this.orderSize = orderSize; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public Long getOrderCreateTime() { | ||
return orderCreateTime; | ||
} | ||
|
||
public void setOrderCreateTime(Long orderCreateTime) { | ||
this.orderCreateTime = orderCreateTime; | ||
} | ||
|
||
} |
Oops, something went wrong.