How to Install and Uninstall perl-IO-Event Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-IO-Event" package

This tutorial shows how to install perl-IO-Event on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-IO-Event

2. Uninstall "perl-IO-Event" package

This guide let you learn how to uninstall perl-IO-Event on openSuSE Tumbleweed:

$ sudo zypper remove perl-IO-Event

3. Information about the perl-IO-Event package on openSuSE Tumbleweed

Information for package perl-IO-Event:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-IO-Event
Version : 0.813-1.24
Arch : noarch
Vendor : openSUSE
Installed Size : 94.7 KiB
Installed : No
Status : not installed
Source package : perl-IO-Event-0.813-1.24.src
Upstream URL : http://search.cpan.org/dist/IO-Event/
Summary : Tied Filehandles for Nonblocking IO with Object Callbacks
Description :
IO::Event provides a object-based callback system for handling nonblocking
IO. The design goal is to provide a system that just does the right thing
w/o the user needing to think about it much.
All APIs are kept as simple as possible yet at the same time, all
functionality is accesible if needed. Simple things are easy. Hard things
are possible.
Most of the time file handling syntax will work fine: '<$filehandle>' and
'print $filehandle 'stuff''.
IO::Event provides automatic buffering of output (with a callback to
throttle). It provides automatic line-at-a-time input.
After initial setup, call 'IO::Event::loop()'.
IO::Event was originally written to use the Event manpage. IO::Event still
defaults to using the Event manpage but it can now use the AnyEvent manpage
or its own event loop.