How to Install and Uninstall naga.noarch Package on Fedora 36

Last updated: October 01,2024

1. Install "naga.noarch" package

Please follow the instructions below to install naga.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install naga.noarch

2. Uninstall "naga.noarch" package

Please follow the guidance below to uninstall naga.noarch on Fedora 36:

$ sudo dnf remove naga.noarch $ sudo dnf autoremove

3. Information about the naga.noarch package on Fedora 36

Last metadata expiration check: 2:35:30 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : naga
Version : 3.0
Release : 19.20200930git6f1e95d.fc36
Architecture : noarch
Size : 54 k
Source : naga-3.0-19.20200930git6f1e95d.fc36.src.rpm
Repository : fedora
Summary : Simplified Java NIO asynchronous sockets
URL : https://github.com/lerno/naga
License : MIT
Description : Naga aims to be a very small NIO library that provides a handful of
: java classes to wrap the usual Socket and ServerSocket with
: asynchronous NIO counterparts (similar to NIO2 planned for Java 1.7).
:
: All of this is driven from a single thread, making it useful for both
: client (e.g. allowing I/O to be done in the AWT-thread without any
: need for threads) and server programming (1 thread for all connections
: instead of 2 threads/connection).
:
: Internally Naga is a straightforward NIO implementation without any
: threads or event-queues thrown in, it is "just the NIO-stuff", to let
: you build things on top of it.
:
: Naga contains the code needed to get NIO up and running without having
: to code partially read buffers and setting various selection key
: flags.