소스 검색

Fix bug of not destroying threads that monitor stale broadcasts.

tags/Production_4_29_2012
ymlam 13 년 전
부모
커밋
b173c8d359
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/altk/comm/engine/CommEngine.java

+ 4
- 0
src/altk/comm/engine/CommEngine.java 파일 보기

@@ -469,6 +469,9 @@ public abstract class CommEngine extends HttpServlet
{
System.out.println(engineName + " destroyed");
// Shutdown threads that periodically purge stale broadcasts.
scheduler.shutdownNow();
// Kill threads in each PostBack, which is remembered in postBackMap.
for (PostBack postback : postBackMap.values())
{
@@ -481,6 +484,7 @@ public abstract class CommEngine extends HttpServlet
}
destroyChild();
super.destroy();
}

/**


불러오는 중...
취소
저장