Definition at line 29 of file BgwCredentialsProvider.h.
◆ BgwCredentials() [1/2]
Initializes a blank instance.
◆ BgwCredentials() [2/2]
| BgwCredentials |
( |
std::string | host, |
|
|
unsigned short | port, |
|
|
std::string | ipSessionToken ) |
|
inline |
Fully identified credentials.
Definition at line 36 of file BgwCredentialsProvider.h.
37 : Scheduling::Counterparty(std::move(host), port, std::move(ipSessionToken))
38 {
39 }
◆ operator bool()
◆ valid()
Checks whether all required fields are present and usable.
Definition at line 42 of file BgwCredentialsProvider.h.
43 {
44 return !host().empty() && !ipSessionToken().empty() && port() != 0;
45 }