• test


    Client SocketListener  // The Socket listener of the client
    Server SocketListener  // The Socket server
    Client Socket(address)  // Send data to the server 
    ServerSocket.accept(address)  // Receive data 
    Switch(Socket){  // Jump to sub-modules 
      case Location_Update:
        update user_data  // Update user data 
        update group_data  // Update grouping data
        update group_location  // Update a group location
        break
      case Location_Request:
        if(group_location valid)  /* Determine if there is a 
    latest group location satisfying precision requirements. */          
          Socket.output(group_location)  
        else 
          Socket.output(GPS_on_demand)  
        break
      default: logout(“null”)
    }    
    ________你所记的,都是假的。
  • 相关阅读:
    git 文件回滚
    常用函数
    触发器
    UPDATE
    DELETE
    INSERT
    完整性与约束
    流程控制
    SET ANSI_NULL ON 和 SET QUOTED_IDENTIFIFR ON
    SELECT 与 SET给标量赋值
  • 原文地址:https://www.cnblogs.com/pudding-ai/p/4851719.html
Copyright © 2020-2023  润新知