From: Yedidya Feldblum Date: Tue, 29 Sep 2015 19:04:29 +0000 (-0700) Subject: CodeMod apache::thrift::async::TEventBase to folly::EventBase (remainder) X-Git-Tag: deprecate-dynamic-initializer~373 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f6f942bec983599c05b0df3d5293c65db79c7783;p=folly.git CodeMod apache::thrift::async::TEventBase to folly::EventBase (remainder) Summary: [Thrift] CodeMod `apache::thrift::async::TEventBase` to `folly::EventBase` (remainder). A few straggler bits left out of D2349828. Reviewed By: @Gownta Differential Revision: D2489063 --- diff --git a/folly/io/async/HHWheelTimer.h b/folly/io/async/HHWheelTimer.h index 0424ac59..22824c22 100644 --- a/folly/io/async/HHWheelTimer.h +++ b/folly/io/async/HHWheelTimer.h @@ -33,7 +33,7 @@ namespace folly { * Hashed Hierarchical Wheel Timer * * Comparison: - * TAsyncTimeout - a single timeout. + * AsyncTimeout - a single timeout. * HHWheelTimer - a set of efficient timeouts with different interval, * but timeouts are not exact. * @@ -287,7 +287,7 @@ class HHWheelTimer : private folly::AsyncTimeout, HHWheelTimer(HHWheelTimer const &) = delete; HHWheelTimer& operator=(HHWheelTimer const &) = delete; - // Methods inherited from TAsyncTimeout + // Methods inherited from AsyncTimeout virtual void timeoutExpired() noexcept; std::chrono::milliseconds interval_; diff --git a/folly/io/async/test/UndelayedDestruction.h b/folly/io/async/test/UndelayedDestruction.h index 6ca4700f..6a9dae9b 100644 --- a/folly/io/async/test/UndelayedDestruction.h +++ b/folly/io/async/test/UndelayedDestruction.h @@ -79,7 +79,7 @@ class UndelayedDestruction : public TDD { * The exact conditions for meeting this may be dependant upon your class * semantics. Typically you are only guaranteed that it is safe to destroy * the object directly from the event loop (e.g., directly from a - * TEventBase::LoopCallback), or when the event loop is stopped. + * EventBase::LoopCallback), or when the event loop is stopped. */ virtual ~UndelayedDestruction() { // Crash if the caller is destroying us with outstanding destructor guards.