pulsar-client-cpp
ProducerCryptoFailureAction.h
1 
19 #ifndef PRODUCERCRYPTOFAILUREACTION_H_
20 #define PRODUCERCRYPTOFAILUREACTION_H_
21 
22 namespace pulsar {
23 
24 enum 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_ */
pulsar
Definition: Authentication.h:31