实现getIdentifier接口

This commit is contained in:
xiongziliang 2018-09-27 09:13:50 +08:00
parent f98546a64c
commit 21acda1e42
2 changed files with 13 additions and 5 deletions

@ -1 +1 @@
Subproject commit bb2ba9005b0191f709897bf51e5bb719eac856bb
Subproject commit cff0af9180984312035ab5972a47e6b632e0919f

View File

@ -172,7 +172,7 @@ protected:
}
//这是个WebSocket会话而不是普通的Http会话
_firstPacket = false;
_session = std::make_shared<SessionImp>(nullptr,_sock);
_session = std::make_shared<SessionImp>(getIdentifier(),nullptr,_sock);
auto strongServer = _weakServer.lock();
if(strongServer){
@ -253,7 +253,11 @@ private:
*/
class SessionImp : public SessionType{
public:
SessionImp(const std::shared_ptr<ThreadPool> &pTh, const Socket::Ptr &pSock) : SessionType(pTh,pSock){};
SessionImp(const string &identifier,
const std::shared_ptr<ThreadPool> &pTh,
const Socket::Ptr &pSock) :
_identifier(identifier),SessionType(pTh,pSock){}
~SessionImp(){}
/**
@ -285,14 +289,18 @@ private:
}
return SessionType::send(buf);
}
string getIdentifier() const override{
return _identifier;
}
private:
onBeforeSendCB _beforeSendCB;
string _identifier;
};
private:
std::shared_ptr<SessionImp> _session;
string _remian_data;
bool _firstPacket = true;
string _remian_data;
weak_ptr<TcpServer> _weakServer;
std::shared_ptr<SessionImp> _session;
};
/**