Home | History | Annotate | Download | only in libpdx

Lines Matching refs:Client

1 #include "pdx/client.h"
10 void Client::EnableAutoReconnect(int64_t reconnect_timeout_ms) {
17 void Client::DisableAutoReconnect() { auto_reconnect_enabled_ = false; }
19 bool Client::IsConnected() const { return channel_.get() != nullptr; }
21 Status<void> Client::CheckReconnect() {
50 bool Client::NeedToDisconnectChannel(int error) const {
54 void Client::CheckDisconnect(int error) {
59 Client::Client(std::unique_ptr<ClientChannel> channel)
62 Client::Client(std::unique_ptr<ClientChannelFactory> channel_factory,
67 ALOGE("Client::Client: Failed to connect to service because: %s",
75 bool Client::IsInitialized() const {
79 void Client::OnConnect() {}
81 int Client::error() const { return error_; }
83 Status<void> Client::SendImpulse(int opcode) {
84 PDX_TRACE_NAME("Client::SendImpulse");
95 Status<void> Client::SendImpulse(int opcode, const void* buffer,
97 PDX_TRACE_NAME("Client::SendImpulse");
108 void Client::Close(int error) {
114 int Client::event_fd() const {
118 LocalChannelHandle& Client::GetChannelHandle() {
122 const LocalChannelHandle& Client::GetChannelHandle() const {
128 Transaction::Transaction(Client& client) : client_{client} {}