3.6學習內容,androidwifiP2p,golang http.ListenAndServe運行機制,

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

android p2p兩篇文章:

http://blog.csdn.net/gophers/article/details/38060307

http://blog.csdn.net/max2005/article/details/12237905

官方文檔:http://developer.android.com/training/connect-devices-wirelessly/wifi-direct.html


golang,

http://blog.csdn.net/gophers/article/details/37815009


  1. func (srv *Server) Serve(l net.Listener) error {  
  2.     defer l.Close()  
  3.     var tempDelay time.Duration   
  4.     // 這個迴圈就是伺服器的主迴圈了,通過傳進來的listener接收來自用戶端的請求並建立串連,  
  5.     // 然後為每一個串連建立routine執行c.serve(),這個c.serve就是具體的服務處理了  
  6.     for {  
  7.         rw, e := l.Accept()  
  8.         if e != nil {  
  9.             if ne, ok := e.(net.Error); ok && ne.Temporary() {  
  10.                 if tempDelay == 0 {  
  11.                     tempDelay = 5 * time.Millisecond  
  12.                 } else {  
  13.                     tempDelay *= 2  
  14.                 }  
  15.                 if max := 1 * time.Second; tempDelay > max {  
  16.                     tempDelay = max  
  17.                 }  
  18.                 srv.logf("http: Accept error: %v; retrying in %v", e, tempDelay)  
  19.                 time.Sleep(tempDelay)  
  20.                 continue  
  21.             }  
  22.             return e  
  23.         }  
  24.         tempDelay = 0  
  25.         c, err := srv.newConn(rw)  
  26.         if err != nil {  
  27.             continue  
  28.         }  
  29.         c.setState(c.rwc, StateNew) // before Serve can return  
  30.         go c.serve() // <-這裡為每一個建立的串連建立routine之後進行服務  
  31.     }  
  32. }  
第30行表示用線程處理網路回來的資料,所以go一般都有很多線程


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.