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