View Javadoc
1   package org.oxerr.huobi.websocket.dto;
2   
3   import org.oxerr.huobi.websocket.dto.response.marketdata.payload.Update;
4   
5   public interface DepthDiff {
6   
7   	long getVersion();
8   	long getVersionOld();
9   
10  	Update getBidInsert();
11  	int[] getBidDelete();
12  	Update getBidUpdate();
13  
14  	Update getAskInsert();
15  	int[] getAskDelete();
16  	Update getAskUpdate();
17  
18  }