1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.xcong.excoin.modules.exchange.service;
|
| import com.xcong.excoin.trade.ExchangeTrade;
|
| import java.util.List;
|
| public interface HandleKlineService {
|
| /**
| * 处理交易后的最新K线
| * @param trades
| */
| void handleExchangeOrderToKline(List<ExchangeTrade> trades);
| }
|
|