template <typename T>

class TimePoint

Defined at line 40 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/time.h

1. Use gpr_timespec or std::chrono::system_clock::time_point instead

2. Specialize the TimePoint class with whichever time class that you

want to use here. See below for two examples of how to do this.

Public Methods

void TimePoint<T> (const T & )

If you see the error with methods below, you may need either

i) using the existing types having a conversion class such as

gpr_timespec and std::chrono::system_clock::time_point or

ii) writing a new TimePoint

<YourType

> to address your case.

Defined at line 46 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/time.h

gpr_timespec raw_time ()

Defined at line 47 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/time.h