세션 해제시 이벤트
| Parameters | Type | Description | 
|---|---|---|
| objInst | INSTANCE | 컴포넌트 인스턴스 | 
| nEventId | long | 세션 해제 원인 코드 | 
| strEventMsg | STRING | 세션 해제 오류 메시지 | 
| Type | Description | 
|---|---|
| void | 
function tcpclt01_on_close(objInst, nEventId, strEventMsg)
{
	// 세션 연결 해제
	screen.alert(objInst.getname() + "_on_close : " + nEventId + ", " + strEventMsg);
}