You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2018/04/26 14:49:26 UTC

[trafficserver] branch master updated: Remove unused TSEvent parameters from C++ API Continuation class.

This is an automated email from the ASF dual-hosted git repository.

amc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 36fbc7d  Remove unused TSEvent parameters from C++ API Continuation class.
36fbc7d is described below

commit 36fbc7de38e69475cb332c09b72e252c27a08048
Author: Walt Karas <wk...@yahoo-inc.com>
AuthorDate: Tue Apr 24 15:41:25 2018 +0000

    Remove unused TSEvent parameters from C++ API Continuation class.
---
 lib/cppapi/include/atscppapi/Continuation.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/cppapi/include/atscppapi/Continuation.h b/lib/cppapi/include/atscppapi/Continuation.h
index dabd1cc..edb6345 100644
--- a/lib/cppapi/include/atscppapi/Continuation.h
+++ b/lib/cppapi/include/atscppapi/Continuation.h
@@ -111,7 +111,7 @@ public:
   // Timeout of zero means no timeout.
   //
   Action
-  schedule(TSEvent event, TSHRTime timeout = 0, TSThreadPool tp = TS_THREAD_POOL_DEFAULT)
+  schedule(TSHRTime timeout = 0, TSThreadPool tp = TS_THREAD_POOL_DEFAULT)
   {
     return TSContSchedule(_cont, timeout, tp);
   }
@@ -119,13 +119,13 @@ public:
   // Timeout of zero means no timeout.
   //
   Action
-  httpSchedule(TSEvent event, TSHttpTxn httpTransactionp, TSHRTime timeout = 0)
+  httpSchedule(TSHttpTxn httpTransactionp, TSHRTime timeout = 0)
   {
     return TSHttpSchedule(_cont, httpTransactionp, timeout);
   }
 
   Action
-  scheduleEvery(TSEvent event, TSHRTime interval /* milliseconds */, TSThreadPool tp = TS_THREAD_POOL_DEFAULT)
+  scheduleEvery(TSHRTime interval /* milliseconds */, TSThreadPool tp = TS_THREAD_POOL_DEFAULT)
   {
     return TSContScheduleEvery(_cont, interval, tp);
   }

-- 
To stop receiving notification emails like this one, please contact
amc@apache.org.