Bolts-ObjC est une bibliothèque de développement mobile Objective-C fournissant des outils pour coordonner les opérations asynchrones et router les liens profonds (deep links) au sein des applications natives. Il fonctionne comme un framework pour gérer les tâches en arrière-plan et résoudre les métadonnées de navigation pour diriger les utilisateurs vers du contenu spécifique.
Les fonctionnalités principales de boltsframework/bolts-objc sont : Objective-C Libraries, Deep Link Navigators, Native Experience Launchers, URL Scheme Handlers, Deep Link Routing, Futures and Promises, Asynchronous Task Managers, App Navigation Fallbacks.
Les alternatives open-source à boltsframework/bolts-objc incluent : boltsframework/bolts-android — Bolts-Android is a mobile development library for Android that provides a framework for deep-linking and a system for… facebook/facebook-ios-sdk — This software is a mobile app analytics toolkit, a social graph API client, and a social sharing library for iOS. Its… mxcl/promisekit — PromiseKit is a future-based concurrency framework and promise library for Swift and Objective-C. It functions as an… amphp/amp — Amp is a non-blocking concurrency framework for PHP. It provides a core infrastructure for writing asynchronous… uber/ribs — RIBs is a mobile architecture framework that structures applications around isolated, lifecycle-managed units of… yonahforst/react-native-permissions — react-native-permissions is a cross-platform mobile permissions library that provides a unified API for checking and…
Bolts-Android is a mobile development library for Android that provides a framework for deep-linking and a system for managing asynchronous tasks. It functions as a toolkit for parsing inbound intents, resolving URL metadata, and routing users to specific native content within an application. The library includes a task manager for coordinating parallel background operations and handling thread-safe execution. This system uses chainable tasks, cancellation tokens to stop active processes, and routing to ensure results return to the main user interface thread. The framework also covers deep-l
This software is a mobile app analytics toolkit, a social graph API client, and a social sharing library for iOS. Its primary purpose is to enable the tracking of application events and ad conversions, the retrieval of user profiles and social connections from the Facebook Graph API, and the publication of content to social feeds and messaging services. The toolkit provides specialized capabilities for social login integration and identity management, including the handling of access tokens and session refreshing. It features a dedicated system for deep link navigation to route users to speci
PromiseKit is a future-based concurrency framework and promise library for Swift and Objective-C. It functions as an asynchronous workflow coordinator, representing the eventual result of an operation to simplify concurrency logic and replace nested callback structures. The framework enables the coordination of both sequential and parallel asynchronous tasks. It provides a structured pipeline for chaining operations, allowing the results of one task to be passed into the next and facilitating the execution of multiple operations simultaneously. The library includes a state-machine based reso
Amp is a non-blocking concurrency framework for PHP. It provides a core infrastructure for writing asynchronous applications using an event loop to schedule operations, timers, and signals within a single process. The project implements a coroutine library that utilizes fibers to suspend and resume function execution. This allows the system to handle concurrent tasks without blocking the main execution thread, optimizing CPU usage during input and output operations. It further manages pending operation results through a future and promise implementation. The framework covers a broad range of