pulsar-client-cpp
Loading...
Searching...
No Matches
ProducerCryptoFailureAction.h
1
19#ifndef PRODUCERCRYPTOFAILUREACTION_H_
20#define PRODUCERCRYPTOFAILUREACTION_H_
21
22namespace pulsar {
23
24enum class ProducerCryptoFailureAction
25{
26 FAIL, // This is the default option to fail send if crypto operation fails
27 SEND // Ignore crypto failure and proceed with sending unencrypted messages
28};
29
30} /* namespace pulsar */
31
32#endif /* PRODUCERCRYPTOFAILUREACTION_H_ */
Definition Authentication.h:31