zoukankan      html  css  js  c++  java
  • 添加SuperSocket的启动代码到 Windows Azure 的 WorkRole 项目

    与其它SuperSocket程序相同,启动代码同样也要写到程序的入口处,如 Windows Azure 的 WorkRole 项目的OnStart() 方法:

    public override bool OnStart()

    {

        // Set the maximum number of concurrent connections

        ServicePointManager.DefaultConnectionLimit = 100;

        // For information on handling configuration changes

        // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.

        m_Bootstrap = BootstrapFactory.CreateBootstrap();

        if (!m_Bootstrap.Initialize())

        {

            Trace.WriteLine("Failed to initialize SuperSocket!", "Error");

            return false;

        }

        var result = m_Bootstrap.Start();

        switch (result)

        {

            case (StartResult.None):

                Trace.WriteLine("No server is configured, please check you configuration!");

                return false;

            case (StartResult.Success):

                Trace.WriteLine("The server has been started!");

                break;

            case (StartResult.Failed):

                Trace.WriteLine("Failed to start SuperSocket server! Please check error log for more information!");

                return false;

            case (StartResult.PartialSuccess):

                Trace.WriteLine("Some server instances were started successfully, but the others failed to start! Please check error log for more information!");

                break;

        }

        return base.OnStart();

    }

  • 相关阅读:
    函数输出参数 双重指针
    NotePad++ 支持日语字体
    C++ 前置操作符与后置操作符
    用js判断 iPhone6 iPhone6 plus iphonex?
    从浏览器输入一个地址到渲染出网页这个过程发生了什么???
    对.Net 垃圾回收Finalize 和Dispose的理解
    在.NET环境中使用单元测试工具NUnit
    信道
    asp.net 获取当前URL的正确方法
    ASP.NET中常用输出JS脚本的类
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11127207.html
Copyright © 2011-2022 走看看