Network System 0.1.1
High-performance modular networking library for scalable client-server applications
Loading...
Searching...
No Matches
utils.h File Reference

Unified utility header for network_system. More...

Include dependency graph for utils.h:

Go to the source code of this file.

Namespaces

namespace  kcenon::network::utils
 Utility components for network_system.
 

Detailed Description

Unified utility header for network_system.

This umbrella header provides convenient access to all public utility components in network_system. It includes:

Usage:

using namespace kcenon::network;
// Use Result<T> for error handling
auto result = some_operation();
if (result.is_ok()) {
process(result.value());
}
// Use lifecycle_manager for component management
lifecycle_manager lifecycle;
lifecycle.start();
Main namespace for all Network System components.
Unified utility header for network_system.
Note
Internal utilities (buffer_pool, compression_pipeline, etc.) are not included in this header and should be accessed directly from src/internal/ when needed for internal implementation.
See also
docs/architecture/facade-pattern.md

Definition in file utils.h.