Ignore:
Timestamp:
Feb 27, 2014 11:48:34 AM (10 years ago)
Author:
bennylp
Message:

Re #1742 (misc): Updated latest pjsip-book and added make install target to install the book to WWWDIR

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/doc/pjsip-book/intro_pjsua2.rst

    r4763 r4772  
    5151---------- 
    5252For platforms that require polling, the PJSUA2 module provides its own worker thread to poll PJSIP, so it is not necessary to instantiate own your polling thread. Having said that the application should be prepared to have the callbacks called by different thread than the main thread. The PJSUA2 module itself is thread safe. 
     53 
     54Often though, especially if you use PJSUA2 with high level languages such as Python, it is required to disable PJSUA2 internal worker threads by setting EpConfig.uaConfig.threadCnt to 0, because the high level environment doesn't like to be called by external thread (such as PJSIP's worker thread). 
     55 
    5356 
    5457Problems with Garbage Collection 
     
    97100Building PJSUA2 
    98101====================== 
    99 The PJSUA2 C++ library will be built by default by PJSIP build system. 
     102The PJSUA2 C++ library will be built by default by PJSIP build system. Standard C++ library is required. 
    100103 
    101104Building Python and Java SWIG Modules 
     
    106109------------ 
    107110 
     111#. `SWIG <http://www.swig.org>`_ 
    108112#. ``JDK``. 
    109113#. ``Python``, version 2.7 or above is required. 
Note: See TracChangeset for help on using the changeset viewer.