GRPC C++  1.13.0-dev
Public Member Functions
grpc::Alarm Class Reference

A thin wrapper around grpc_alarm (see / / src/core/surface/alarm.h). More...

#include <alarm.h>

Public Member Functions

 Alarm ()
 Create an unset completion queue alarm. More...
 
 ~Alarm ()
 Destroy the given completion queue alarm, cancelling it in the process. More...
 
template<typename T >
 Alarm (CompletionQueue *cq, const T &deadline, void *tag)
 DEPRECATED: Create and set a completion queue alarm instance associated to cq. More...
 
template<typename T >
void Set (CompletionQueue *cq, const T &deadline, void *tag)
 Trigger an alarm instance on completion queue cq at the specified time. More...
 
 Alarm (const Alarm &)=delete
 Alarms aren't copyable. More...
 
Alarmoperator= (const Alarm &)=delete
 
 Alarm (Alarm &&rhs)
 Alarms are movable. More...
 
Alarmoperator= (Alarm &&rhs)
 
void Cancel ()
 Cancel a completion queue alarm. More...
 

Detailed Description

A thin wrapper around grpc_alarm (see / / src/core/surface/alarm.h).

Constructor & Destructor Documentation

◆ Alarm() [1/4]

grpc::Alarm::Alarm ( )

Create an unset completion queue alarm.

◆ ~Alarm()

grpc::Alarm::~Alarm ( )

Destroy the given completion queue alarm, cancelling it in the process.

◆ Alarm() [2/4]

template<typename T >
grpc::Alarm::Alarm ( CompletionQueue cq,
const T &  deadline,
void *  tag 
)
inline

DEPRECATED: Create and set a completion queue alarm instance associated to cq.

This form is deprecated because it is inherently racy.

.

◆ Alarm() [3/4]

grpc::Alarm::Alarm ( const Alarm )
delete

Alarms aren't copyable.

◆ Alarm() [4/4]

grpc::Alarm::Alarm ( Alarm &&  rhs)
inline

Alarms are movable.

Member Function Documentation

◆ Cancel()

void grpc::Alarm::Cancel ( )

Cancel a completion queue alarm.

Calling this function over an alarm that has already fired has no effect.

◆ operator=() [1/2]

Alarm& grpc::Alarm::operator= ( const Alarm )
delete

◆ operator=() [2/2]

Alarm& grpc::Alarm::operator= ( Alarm &&  rhs)
inline

◆ Set()

template<typename T >
void grpc::Alarm::Set ( CompletionQueue cq,
const T &  deadline,
void *  tag 
)
inline

Trigger an alarm instance on completion queue cq at the specified time.

Once the alarm expires (at deadline) or it's cancelled (see Cancel), an event with tag tag will be added to cq. If the alarm expired, the event's success bit will be true, false otherwise (ie, upon cancellation).


The documentation for this class was generated from the following file: