Showing 19 open source projects for "threads pool"

View related business solutions
  • Employee monitoring software with screenshots Icon
    Employee monitoring software with screenshots

    Clear visibility and insights into how employees work. Even remotely.

    Stay productive working at any distance from anywhere with Monitask.
  • Total Network Visibility for Network Engineers and IT Managers Icon
    Total Network Visibility for Network Engineers and IT Managers

    Network monitoring and troubleshooting is hard. TotalView makes it easy.

    This means every device on your network, and every interface on every device is automatically analyzed for performance, errors, QoS, and configuration.
  • 1
    Transmittable ThreadLocal

    Transmittable ThreadLocal

    Provides an enhanced InheritableThreadLocal

    TransmittableThreadLocal (TTL), the missing Java™ std lib(simple & 0-dependency) for framework/middleware, provide an enhanced InheritableThreadLocal that transmits values between threads even using thread pooling components. In the case of using thread pools and other execution components that will pool multiple threads, the ThreadLocalvalue transfer function is provided to solve the problem of context transfer during asynchronous execution. A Javastandard library should provide standard...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    Hippo4j

    Hippo4j

    Powerful dynamic thread pool framework with monitoring/alarm functions

    Dynamically observable thread pool framework to improve online operation guarantee capabilities for business systems. Dynamically change thread pool parameters when the application is running, including not limited to core, maximum thread, blocking queue size, and rejection strategy, etc., and support different node thread pool configuration differentiation under the application cluster. Buried when the application thread pool is running, it provides four alarm dimensions, such as thread pool...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    cocoyaxi

    cocoyaxi

    A go-style coroutine library in C++11 and more

    cocoyaxi (co for short), is an elegant and efficient cross-platform C++ base library. It contains a series of high-quality base components, such as a go-style coroutine, coroutine-based network programming framework, command line, and config file parser, high-performance log library, unit testing framework, JSON library, etc. co has implemented a go-style coroutine, which has the following features. Multi-thread scheduling, the default number of threads is the number of system CPU cores. Shared...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    Syslogd2

    High capacity syslog data collection, filtering, and management.

    Syslogd2 is a syslog daemon that has been completely re-imagined specifically for use in network environments. It is multi-threaded, scalable and versatile with features designed for both network and host managers. Each Syslogd2 binary is customized from a set of over 20 features at compile-time. It can support input from text files, named-pipes, Linux kernel and user-defined Linux and (both IPv4 and IPv6) IP sockets (both UDP and TCP). It provides a pre-loadable name-cache that can replace...
    Downloads: 1 This Week
    Last Update:
    See Project
  • RMM Software | Remote Monitoring Platform and Tools Icon
    RMM Software | Remote Monitoring Platform and Tools

    Best-in-class automation, scalability, and single-pane IT management.

    Don’t settle when it comes to managing your clients’ IT infrastructure. Exceed their expectations with ConnectWise RMM, our MSP RMM software that provides proactive tools and NOC services—regardless of device environment. With the number of new vulnerabilities rising each year, smart patching procedures have never been more important. We automatically test and deploy patches when they are viable and restrict patches that are harmful. Get better protection for clients while you spend less time managing endpoints and more time growing your business. It’s tough to locate, afford, and retain quality talent. In fact, 81% of IT leaders say it’s hard to find the recruits they need. Add ConnectWise RMM, NOC services and get the expertise and problem resolution you need to become the advisor your clients demand—without adding headcount.
  • 5
    OkDownload

    OkDownload

    A reliable, flexible, fast and powerful download engine

    ... flexible callback mechanism and listener. More flexible to expand each part of OkDownload. Fewer threads to do the same thing without drop performance. File-IO thread pool is independent of Network-IO thread pool. Make sense auto filename from URL if can't find from response header. Cancel and Start is very effective especially for a bunch of tasks with tons of optimize.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Advanced C/C++ library(ACL) for UNIX-like OS and WIN32 OS, including sync/async/ssl iostream for net/file, thread pool, process pool, db pool, server framework, event, memory, string, array/hash/ring/list, xml and json parser, http/smtp/icmp protocol, SSL/TLS, C unit test, etc
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7
    tombpool

    tombpool

    Thread pool C library

    In computer programming, the thread pool pattern (also replicated workers or worker-crew model) is where a number of threads are created to perform a number of tasks, which are usually organized in a queue. The results from the tasks being executed might also be placed in a queue, or the tasks might return no result (for example, if the task is for animation). Typically, there are many more tasks than threads. As soon as a thread completes its task, it will request the next task from the queue...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8

    JavaMutex

    Provides 100% pure Java mutual exclusion.

    Freely redistributable open source 100% pure Java for mutual exclusion. Read-write and read-only reentrant lock, condition variable, atomic wraps for Boolean, Integer, Long, and Reference. Cell pool with optional locking, object exchanger, Intersect.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    Easy Simple Network Library

    A MINA-like, cross-platform C++ network library based on boost::asio

    The full name of "esnetwork" is "easy simple network library". It is a cross-platform C++ network library based on boost::asio (http://think-async.com). It aims to be a simple, easy-to-use and full-featured networking framework, like MINA in Java.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Propelling Payments for Software Platforms Icon
    Propelling Payments for Software Platforms

    For SaaS businesses to monetize payments through its turnkey PayFac-as-a-Service solution.

    Exact Payments delivers easy-to-integrate embedded payment solutions enabling you to rapidly onboard merchants, instantly activate a variety of payment methods and accelerate your revenue — delivering an end-to-end payment processing platform for SaaS businesses.
  • 10

    Cgminer

    The combined CPU, GPU, FPGA, and ASIC miner for bitcoin, and litecoin

    Features: - Very low overhead free c code for Linux and windows with very low non-mining CPU and ram usage - Stratum and GBT pooled mining protocol support, including ultra low overhead solo mining - Scaleable networking scheduler designed to scale to any size hashrate without networking delays yet minimise connection overhead - long poll support - will use longpoll from any pool if primary pool does not support it - Self detection of new blocks with a mini-database for slow/failing longpoll...
    Downloads: 4 This Week
    Last Update:
    See Project
  • 11
    Libtpool

    Libtpool

    A thread pool library using pthreads

    A thread pool library that uses a context so a program may utilize more than one thread pool at a time. A hook allows your program to determine the number of free threads before attempting to launch one. This library has seen successful use in a range of server daemons and client daemons.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    FixedThreadPool

    A thread pool that reuses a fixed number of threads.

    A thread pool that reuses a fixed number of threads operating off a shared unbounded queue, using the provided ThreadFactory to create new threads when needed. At any point, at most nThreads threads will be active processing tasks. If additional tasks are submitted when all threads are active, they will wait in the queue until a thread is available. The threads in the pool will exist until it is destroyed.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13

    libgostl

    variant of STL extension

    small C++ Library providing some classes to extend STL: singletons, cross-platform threads & synchronization, thread pool, memory pool, custom allocators, small unicode support, logging & diagnostic, and so on.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    vfTasks parallelization library
    vfTasks is a C library to ease the implementation of concurrent tasks: thread pool to efficiently create and reuse tasks, highly efficient inter-task synchronization, and streaming interfaces to stream data from one task to another.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    C Thread pool
    A simple thread pool for C. The source code is ANSI C and POSIX compliant. ---- Project has moved to https://github.com/Pithikos/C-Thread-Pool ----
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    CazaPool3D is a 100% java3d pool and billard game, with both single and multiple player abilities. It tracks ball paths, handle undo, use mulitple views, loads (threads) multiple 3ds objects, handles picking/collision/animation/overlays and more
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    CoTaMan - Concurrent Task Manager is a library based on Boost that allows you to easily run a set of tasks with known dependencies on multiple threads that are managed in a thread pool.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    JustRun is a java package that provides you with a pool of threads ready for use. It comes in binary and source format with javadoc included.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    A Java framework for building flexible thread pool where threads can be allocated and recycled.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next