로그 수정

기본 파라미터 변경
watch 삭제
This commit is contained in:
2016-07-22 16:31:43 +09:00
parent 53af49336b
commit 7c63795f12
3 changed files with 17 additions and 4 deletions

View File

@@ -88,6 +88,15 @@ namespace upper_limit_crawler
m_WatchList.Add(strCode, item);
}
public void RemoveWatch(string strCode)
{
if (m_WatchList.ContainsKey(strCode))
return;
m_WatchList[strCode].m_StockCur.Unsubscribe();
m_WatchList.Remove(strCode);
}
public void AddBlackList(string strCode)
{
m_BlackList.Add(strCode);