Subversion Repositories HomeAutomation

Rev

Rev 1664 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1664 Rev 1959
Line 44... Line 44...
44
   
44
   
45
    void InitializeDone();
45
    void InitializeDone();
46
    void CallOutput(unsigned int request_id, std::string output);
46
    void CallOutput(unsigned int request_id, std::string output);
47
   
47
   
48
private:
48
private:
49
    net::ServerId server_id_;
49
    net::SocketId server_id_;
50
    static net::ClientId current_client_id_;
50
    static net::SocketId current_client_id_;
51
   
51
   
52
    void SlotOnNewState(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
52
    void SlotOnNewState(net::SocketId client_id, net::SocketId server_id, net::ClientState client_state);
53
    void SlotOnNewData(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
53
    void SlotOnNewData(net::SocketId client_id, net::SocketId server_id, common::Byteset data);
54
   
54
   
55
    void SlotOnNewStateHandler(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
55
    void SlotOnNewStateHandler(net::SocketId client_id, net::SocketId server_id, net::ClientState client_state);
56
    void SlotOnNewDataHandler(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
56
    void SlotOnNewDataHandler(net::SocketId client_id, net::SocketId server_id, common::Byteset data);
57
   
57
   
58
    static logging::Logger LOG;
58
    static logging::Logger LOG;
59
   
59
   
60
    static Value Export_PromptRequest(const v8::Arguments& args);
60
    static Value Export_PromptRequest(const v8::Arguments& args);
61
    static Value Export_AutoCompleteResponse(const v8::Arguments& args);
61
    static Value Export_AutoCompleteResponse(const v8::Arguments& args);