How to Install and Uninstall ghc-async.x86_64 Package on Rocky Linux 9
Last updated: November 14,2024
1. Install "ghc-async.x86_64" package
Please follow the steps below to install ghc-async.x86_64 on Rocky Linux 9
$
sudo dnf update
Copied
$
sudo dnf install
ghc-async.x86_64
Copied
2. Uninstall "ghc-async.x86_64" package
This tutorial shows how to uninstall ghc-async.x86_64 on Rocky Linux 9:
$
sudo dnf remove
ghc-async.x86_64
Copied
$
sudo dnf autoremove
Copied
3. Information about the ghc-async.x86_64 package on Rocky Linux 9
Last metadata expiration check: 1:18:37 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : ghc-async
Version : 2.2.4
Release : 1.el9
Architecture : x86_64
Size : 36 k
Source : ghc-async-2.2.4-1.el9.src.rpm
Repository : epel
Summary : Run IO operations asynchronously and wait for their results
URL : https://hackage.haskell.org/package/async
License : BSD
Description : This package provides a higher-level interface over threads, in which an
: 'Async a' is a concurrent thread that will eventually deliver a value of
: type 'a'. The package provides ways to create "Async" computations,
: wait for their results, and cancel them.
:
: Using 'Async' is safer than using threads in two ways:
:
: * When waiting for a thread to return a result, if the thread dies with an
: exception then the caller must either re-throw the exception ('wait') or handle
: it ('waitCatch'); the exception cannot be ignored.
:
: * The API makes it possible to build a tree of threads that are automatically
: killed when their parent dies (see 'withAsync').
Available Packages
Name : ghc-async
Version : 2.2.4
Release : 1.el9
Architecture : x86_64
Size : 36 k
Source : ghc-async-2.2.4-1.el9.src.rpm
Repository : epel
Summary : Run IO operations asynchronously and wait for their results
URL : https://hackage.haskell.org/package/async
License : BSD
Description : This package provides a higher-level interface over threads, in which an
: 'Async a' is a concurrent thread that will eventually deliver a value of
: type 'a'. The package provides ways to create "Async" computations,
: wait for their results, and cancel them.
:
: Using 'Async' is safer than using threads in two ways:
:
: * When waiting for a thread to return a result, if the thread dies with an
: exception then the caller must either re-throw the exception ('wait') or handle
: it ('waitCatch'); the exception cannot be ignored.
:
: * The API makes it possible to build a tree of threads that are automatically
: killed when their parent dies (see 'withAsync').