sazze/node-pm

View on GitHub
docs/config.js.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="utf-8">
    <title>node-pm Source: config.js</title>

    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">

    
    <link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
    
</head>

<body>
<div class="container-fluid">
    <div class="navbar navbar-fixed-top navbar-inverse">
        <div class="navbar-inner">
            <a class="brand" href="index.html">node-pm</a>
            <ul class="nav">
                
                <li class="dropdown">
                    <a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b
                        class="caret"></b></a>

                    <ul class="dropdown-menu ">
                        
                        <li>
                            <a href="module-clusterEvents.html">clusterEvents</a>
                        </li>
                        
                        <li>
                            <a href="module-Logger.html">Logger</a>
                        </li>
                        
                        <li>
                            <a href="module-main.html">main</a>
                        </li>
                        
                        <li>
                            <a href="module-master.html">master</a>
                        </li>
                        
                        <li>
                            <a href="module-processEvents.html">processEvents</a>
                        </li>
                        

                    </ul>
                </li>
                
                <li class="dropdown">
                    <a href="events.list.html" class="dropdown-toggle" data-toggle="dropdown">Events<b
                        class="caret"></b></a>

                    <ul class="dropdown-menu ">
                        
                        <li>
                            <a href="module-master.html#event:shutdown">shutdown</a>
                        </li>
                        

                    </ul>
                </li>
                
            </ul>
        </div>
    </div>

    <div class="row-fluid">

        
            <div class="span12">
                
                <div id="main">
                    


        <h1 class="page-title">Source: config.js</h1>
    
    <section>
        <article>
            <pre class="sunlight-highlight-javascript linenums">/**
 *
 * @param {string} _[0] the worker file
 * @param {bool} [s=false] silent all errors
 * @param {bool} [d=false] turn on debug logs
 * @param {bool} [v=false] turn on verbose logs
 * @param {bool} [n=0] how many processes to start (0 means match number of CPU's)
 * @param {string} [workerMessageHandler=''] the path to the module containing the worker message handler (for inter-process communication)
 */
module.exports = {
  v: [],
  s: false,
  n: 0,
  _: [],
  timeouts: {
    start: 30000,
    stop: 30000,
    maxAge: 1800000
  },
  workerMessageHandler: ''
};</pre>
        </article>
    </section>





                </div>

                <div class="clearfix"></div>
                <footer>
                    
                    
        <span class="copyright">
        Sazze, Inc Copyright © 2012-2013
        </span>
                    <br />
                    
        <span class="jsdoc-message">
        Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a>
        on Thu Sep 11 2014 11:45:56 GMT-0700 (PDT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
        </span>
                </footer>
            </div>

            
            <br clear="both">
        </div>

    </div>
    <script src="scripts/sunlight.js"></script>
    <script src="scripts/sunlight.javascript.js"></script>
    <script src="scripts/sunlight-plugin.doclinks.js"></script>
    <script src="scripts/sunlight-plugin.linenumbers.js"></script>
    <script src="scripts/sunlight-plugin.menu.js"></script>
    <script src="scripts/jquery.min.js"></script>
    <script src="scripts/jquery.scrollTo.js"></script>
    <script src="scripts/jquery.localScroll.js"></script>
    <script src="scripts/bootstrap-dropdown.js"></script>
    <script src="scripts/toc.js"></script>


    <script>  Sunlight.highlightAll({lineNumbers:true,  showMenu: true, enableDoclinks :true}); </script>

    <script>
        $( function () {
            $( "#toc" ).toc( {
                selectors   : "h1,h2,h3,h4",
                showAndHide : false,
                scrollTo    : 60
            } );
            $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
            $( "#main span[id^='toc']" ).addClass( "toc-shim" );

        } );
    </script>

    

</body>
</html>