NAME
IO::Async::Set::GMainLoop
- backward-compatibility wrapper around IO::Async::Loop::Glib
SYNOPSIS
This class should not be used in new code, and is provided for backward compatibility for older applications that still use it. It has been renamed to IO::Async::Loop::Glib
. Any application using this class should simply change
use IO::Async::Set::GMainLoop;
my $set = IO::Async::Set::GMainLoop->new( .... );
into
use IO::Async::Loop::Glib;
my $loop = IO::Async::Loop::Glib->new( .... );
The behaviour has not otherwise changed.
CONSTRUCTOR
$set = IO::Async::Set::GMainLoop->new( %params )
This function wraps a call to IO::Async::Set::GMainLoop->new()
.
SEE ALSO
IO::Async::Loop::Glib - a Loop using the
Glib::MainLoop
object
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>