CodeMod apache::thrift::async::TEventBase to folly::EventBase (remainder)
authorYedidya Feldblum <yfeldblum@fb.com>
Tue, 29 Sep 2015 19:04:29 +0000 (12:04 -0700)
committerfacebook-github-bot-9 <folly-bot@fb.com>
Tue, 29 Sep 2015 19:20:19 +0000 (12:20 -0700)
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

folly/io/async/HHWheelTimer.h
folly/io/async/test/UndelayedDestruction.h

index 0424ac59793b769fa95006a5b5e00c4265c4cfb3..22824c22cb5365591a8e4f1783f8f2b5cc9580ea 100644 (file)
@@ -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_;
index 6ca4700f970e7e9cc17d8df52ee602a5e1d7ef53..6a9dae9b3b166e19d8ff8842db03466daf05b83c 100644 (file)
@@ -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.