Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,11 @@ public void overseasStockUnsubscribe(String code) {
@Override
public void sendStockData(String stockCode, Object stockData) {
if (stockData instanceof LiveStockPriceStream stream) {
/*
if (stream.priceChange() == null || stream.priceChange().compareTo(BigDecimal.ZERO) == 0) {
log.debug("변동 없음 - 전송 스킵: {}", stockCode);
return;
}
}*/

// 지연 시간을 측정하기 위해 STOMP 헤더에 타임스탬프 추가
// REVIEW 헤더에 데이터를 추가한 것일 뿐 바디는 바뀌지 않으므로 프론트 코드에는 문제가 없는 것으로 알고 있는데 아니라면 수정 필수
Expand Down
Loading