aboutsummaryrefslogtreecommitdiffstats
path: root/doc/book/basics.tex
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2014-03-13 19:49:54 +0000
committerVincent Richard <[email protected]>2014-03-13 19:49:54 +0000
commit86788ce022767eb706f8cb60fa79d08ad4724131 (patch)
treeae773b72aa2eb47656e0251ab6cab5e62aeba18f /doc/book/basics.tex
parentPremature return if message list/set is empty. (diff)
downloadvmime-86788ce022767eb706f8cb60fa79d08ad4724131.tar.gz
vmime-86788ce022767eb706f8cb60fa79d08ad4724131.zip
Removed unused/unimplemented function.
Diffstat (limited to '')
-rw-r--r--doc/book/basics.tex7
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/book/basics.tex b/doc/book/basics.tex
index 62cedb9e..fefd0515 100644
--- a/doc/book/basics.tex
+++ b/doc/book/basics.tex
@@ -806,8 +806,6 @@ of progress when they are performing an operation.
The {\vcode vmime::utility::progressListener} interface is rather simple:
\begin{lstlisting}
-const bool cancel() const;
-
void start(const int predictedTotal);
void progress(const int current, const int currentTotal);
void stop(const int total);
@@ -818,8 +816,3 @@ of the operation, respectively. {\vcode progress()} is called each time the
status of progress changes (eg. a chunk of data has been processed). There is
no unit specified for the values passed in argument. It depends on the
notifier: it can be bytes, percent, number of messages...
-
-Your listener can return {\vcode} in the {\vcode cancel()} method to cancel
-the operation. However, be warned that cancelling is not always supported by
-the source object.
-