gov.nist.javax.sip
クラス EventScanner

java.lang.Object
  上位を拡張 gov.nist.javax.sip.EventScanner
すべての実装されたインタフェース:
java.lang.Runnable

public class EventScanner
extends java.lang.Object
implements java.lang.Runnable

Event Scanner to deliver events to the Listener.

バージョン:
JAIN-SIP-1.1 $Revision: 1.15 $ $Date: 2004/08/23 23:56:20 $
作成者:
M. Ranganathan
This code is in the public domain.

コンストラクタの概要
EventScanner(SipStackImpl sipStackImpl)
           
 
メソッドの概要
 void addEvent(gov.nist.javax.sip.EventWrapper eventWrapper)
           
 void deliverEvent(gov.nist.javax.sip.EventWrapper eventWrapper)
           
 void run()
          For the non-re-entrant listener this delivers the events to the listener from a single queue.
 void stop()
          Stop the event scanner.
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

EventScanner

public EventScanner(SipStackImpl sipStackImpl)
メソッドの詳細

addEvent

public void addEvent(gov.nist.javax.sip.EventWrapper eventWrapper)

stop

public void stop()
Stop the event scanner. Decrement the reference count and exit the scanner thread if the ref count goes to 0.


deliverEvent

public void deliverEvent(gov.nist.javax.sip.EventWrapper eventWrapper)

run

public void run()
For the non-re-entrant listener this delivers the events to the listener from a single queue. If the listener is re-entrant, then the stack just calls the deliverEvent method above.

定義:
インタフェース java.lang.Runnable 内の run