.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.CallLater:
==========================================================================================================================================
|phoenix_title| **wx.CallLater**
==========================================================================================================================================
A convenience class for :class:`wx.Timer`, that calls the given callable
object once after the given amount of milliseconds, passing any
positional or keyword args. The return value of the callable is
available after it has been run with the :meth:`~wx.CallLater.GetResult`
method.
If you don't need to get the return value or restart the timer
then there is no need to hold a reference to this object. CallLater
maintains references to its instances while they are running. When they
finish, the internal reference is deleted and the GC is free to collect
naturally.
.. seealso::
:func:`wx.CallAfter`
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html

Inheritance diagram for class
CallLater:
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.CallLater.__init__` Constructs a new :class:`wx.CallLater` object.
:meth:`~wx.CallLater.GetInterval`
:meth:`~wx.CallLater.GetResult` Returns the value of the callable.
:meth:`~wx.CallLater.HasRun` Returns whether or not the callable has run.
:meth:`~wx.CallLater.IsRunning`
:meth:`~wx.CallLater.Notify` The timer has expired so call the callable.
:meth:`~wx.CallLater.SetArgs` (Re)set the args passed to the callable object. This is
:meth:`~wx.CallLater.Start` (Re)start the timer
:meth:`~wx.CallLater.Stop` Stop and destroy the timer.
:meth:`~wx.CallLater.__del__`
================================================================================ ================================================================================
|
|property_summary| Properties Summary
=====================================
================================================================================ ================================================================================
:attr:`~wx.CallLater.Interval` See :meth:`~wx.CallLater.GetInterval`
:attr:`~wx.CallLater.Result` See :meth:`~wx.CallLater.GetResult`
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.CallLater(typing.Generic[_P, _T])
A convenience class for :class:`wx.Timer`, that calls the given callable
object once after the given amount of milliseconds, passing any
positional or keyword args. The return value of the callable is
available after it has been run with the :meth:`~wx.CallLater.GetResult`
method.
If you don't need to get the return value or restart the timer
then there is no need to hold a reference to this object. CallLater
maintains references to its instances while they are running. When they
finish, the internal reference is deleted and the GC is free to collect
naturally.
.. seealso::
:func:`wx.CallAfter`
.. method:: __init__(self, millis, callableObj: typing.Callable[_P, _T], *args: _P.args, **kwargs: _P.kwargs)
Constructs a new :class:`wx.CallLater` object.
:param int millis: number of milliseconds to delay until calling the callable object
:param PyObject callableObj: the callable object
:param args: arguments to be passed to the callable object
:param kw: keyword arguments to be passed to the callable object
.. method:: GetInterval(self)
.. method:: GetResult(self)
Returns the value of the callable.
:rtype: a Python object
:return: result from callable
.. method:: HasRun(self)
Returns whether or not the callable has run.
:rtype: bool
.. method:: IsRunning(self)
.. method:: Notify(self)
The timer has expired so call the callable.
.. method:: SetArgs(self, *args: _P.args, **kwargs: _P.kwargs)
(Re)set the args passed to the callable object. This is
useful in conjunction with :meth:`Start` if
you want to schedule a new call to the same callable
object but with different parameters.
:param args: arguments to be passed to the callable object
:param kw: keywords to be passed to the callable object
.. method:: Start(self, millis: typing.Optional[int]=None, *args: _P.args, **kwargs: _P.kwargs)
(Re)start the timer
:param int millis: number of milli seconds
:param args: arguments to be passed to the callable object
:param kw: keywords to be passed to the callable object
.. method:: Stop(self)
Stop and destroy the timer.
.. method:: __del__(self)
.. attribute:: Interval
See :meth:`~wx.CallLater.GetInterval`
.. attribute:: Result
See :meth:`~wx.CallLater.GetResult`