Welcome![Sign In][Sign Up]
Location:
Search - worker thread

Search list

[Ftp Clientdllfileprog

Description: 一个简单的下载程序,General Description The program uses a worker thread to perform the file download this is so that our main application won t be blocked and so that we could have a cancel download functionality inside the program. All the downloading is being done from inside the thread along with the on-screen updating we will get into that in a minute. -a simple download, General Description The program uses a worker thread to perform the file download this is so that our main application won t be blocked and so that we could have a cancel download functionality inside the program. All the downloading is being done from inside the thread along with the on-screen updating we will get into that in a minute.
Platform: | Size: 47578 | Author: 张德慧 | Hits:

[Ftp Clientdllfileprog

Description: 一个简单的下载程序,General Description The program uses a worker thread to perform the file download this is so that our main application won t be blocked and so that we could have a cancel download functionality inside the program. All the downloading is being done from inside the thread along with the on-screen updating we will get into that in a minute. -a simple download, General Description The program uses a worker thread to perform the file download this is so that our main application won t be blocked and so that we could have a cancel download functionality inside the program. All the downloading is being done from inside the thread along with the on-screen updating we will get into that in a minute.
Platform: | Size: 47104 | Author: 张德慧 | Hits:

[Process-Threadthread

Description: 主要对线程的用法一个举例 ,创建工作者线程,线程函数等-Mainly on the usage of a thread, for example, create a worker thread, the thread function, etc.
Platform: | Size: 120832 | Author: 崔应霞 | Hits:

[Process-Thread08

Description: 以一个具体实例介绍工作者线程和用户界面线程的创建。在本实例中将创建一个工作者线程和用户界面线程。-To a specific example of worker threads and user interface to create threads. In this instance would be to create a worker thread and the user interface thread.
Platform: | Size: 5339136 | Author: yingming | Hits:

[CSharpWorker

Description: C#开发的,介绍线程的使用! 弄个例子,大家好理解,希望对大家有一定的帮助!-C# Developed to introduce the use of thread!弄个example, good understanding, hope for all of us will certainly help!
Platform: | Size: 2048 | Author: 小陈 | Hits:

[Process-Threadwz2

Description: MFC中有两类线程,分别称之为工作者线程和用户界面线程。本例演示这两类线程!-There are two types of MFC thread, referred to as worker threads and user interface thread. This example shows you these two types of threads!
Platform: | Size: 70656 | Author: 吴真 | Hits:

[Internet-NetworkTcpBroadcastClient

Description: tcp的客户端,用于与TCP/IP的server端收发字符,可以开启一个工人线程不断的发送数据.-tcp client for use on TCP/IP of the server side to send and receive characters, you can open a worker thread to send data continuously.
Platform: | Size: 3719168 | Author: band | Hits:

[Process-ThreadVCLongRun

Description: 多线程的编程,将耗时的工作放在worker线程中,可实现动态调用UI界面的文本框和Static控件-Multi-threaded programming, will be time-consuming work on the worker thread, you can achieve the dynamic invocation interface UI text box and Static Control
Platform: | Size: 30720 | Author: Steven Xia | Hits:

[Internet-Networkmultithreadwebspider

Description: vc6编写的多线程网络蜘蛛。功能:1、下载指定网址的网页文件,并可获得服务器的http响应信息。 2、可过滤出下载网页源码中的链接,文字,html标签,email地址 3、自动创建工作线程,检验过滤链接的有效性。-vc6 prepared multi-threaded web spider. Function: 1, download URL specified documents and access to the http server to respond to information. 2, can filter out the download page link in the source code, text, html tags, email address 3, automatically creates a worker thread, testing the effectiveness of filters link.
Platform: | Size: 1586176 | Author: hxl | Hits:

[.netxiancheng

Description: 用Visual c++.net (VC.net) 编写的 如何使用工作线程 的程序,并且代码都有注释。需要的朋友可以下载看看。-Using Visual c . Net (VC.net) prepared in how to use the worker thread procedure and the code has notes. Need to see a friend can be downloaded.
Platform: | Size: 197632 | Author: 羊妹妹 | Hits:

[Internet-NetworkFtp

Description: 运用多线程(工作线程),实现FTP客户端。-The use of multi-threaded (worker thread), the realization of FTP client.
Platform: | Size: 1903616 | Author: 张伟 | Hits:

[Windows Developvcthreads

Description: 10个VC++多线程操作实例源代码,内容涉及如何安全终止线程、如何创建UI线程、如何创建Worker线程、如何等待线程结束、如何挂起和恢复线程、如何获得线程的退出码、如何使用互斥量、如何使用临界区、如何使用信号量等内容,入门者更应该看一看,多线程的使用很广泛,可以提高程序效率。 -10 VC++ source code examples of multi-threaded operation, which relates to how to safely terminate the thread, how to create a UI thread, how to create a Worker thread, how to wait for the end of the thread, how to suspend and resume threads, how to get the thread exit code, how to use the mutex volume, how to use the critical area, how to use semaphores etc., beginners should take a look at the use of very broad multi-threading can improve the procedures more efficient.
Platform: | Size: 134144 | Author: yzj | Hits:

[Linux-Unixthread

Description: 概述一下原理和每个类的作用 (1): CTask 一个任务基类,作为线程的参数用 (2): CWorkThread:工作线程类,轮询检测参数是否可用,如果可用的话, 就去调用参数CTask的执 行函数Execute,如果参数不可用就等待 (3): CWorkQueue:是一个任务队列,里面装载CTask子类的对象,是一个对象的容器 (4): CWorkThreadPool:工作线程池,其中包含了工作线程组,调度线程,调度线程不停的检测 任务队列中是否有可用任务对象,如过取到一个有效的任务对象,就从工作线程组中查找出来 一个空闲的工作线程,把这个任务交给这个空闲的线程去执行,如果没有空闲线程则创建新 的工作线程并添加到工作线程组中。 (1),(2),(3),(4)组成了库的核心,可以稍加修改进行应用 其他附属类: (5):CSimpleUDP 一个简易的封装的UDP通讯类 (6):CLogHelper 一个线程安全的日志类,将日志存储到指定文件并能打印到标准输出 特点:支持windows和Linux平台 -Outline the principles and the role of each class (1): CTask a task base class, as arguments to thread (2): CWorkThread: Class of worker threads, polling detection parameters are available, if available, Go to the implementation of the function call parameters CTask Execute, if the parameter is not available to wait (3): CWorkQueue: a task queue, which loaded CTask subclass object is a container object (4): CWorkThreadPool: worker thread pool, which contains the group of worker threads, scheduling threads, thread scheduling non-stop testing Task queue is available in the task object, such as over the task of taking to a valid object, the thread from the Working Group to find out An idle worker thread, this task to the idle thread to execute, if no idle thread is to create a new The work of the thread and added to the thread group. (1), (2), (3), (4) form the core of the library, can be modified for application Other sub categories: (5): CSim
Platform: | Size: 38912 | Author: 金建业 | Hits:

[Process-Threadworker

Description: 如何创建Worker线程,对线程感兴趣的可以参考下。-How to create a Worker thread, the thread of interest can refer to.
Platform: | Size: 11264 | Author: | Hits:

[Software EngineeringWorker

Description: 如何创建Worker线程,自己找的,比较好的资料-How to create a Worker thread, they seek for themselves, good information! !
Platform: | Size: 3464192 | Author: 钱里 | Hits:

[Button controlthread

Description: MFC 多线程应用, 包括工作线程, 用户界面线程, 例子多达9个,欢迎下载测试-MFC multi-threaded applications, including the worker thread, the user interface thread, examples of up to 9 are welcome to download the test
Platform: | Size: 274432 | Author: chel | Hits:

[Process-Threadworker-thread-implement

Description: Worker thread implementation in vc++ using mfc
Platform: | Size: 2048 | Author: ali | Hits:

[Process-ThreadWorker-thread

Description: 创建workes线程,可以自定义线程,线程向主窗口发送数据。-Create the workes programming, you can customize the thread, the thread sends data to the main window.
Platform: | Size: 13312 | Author: 贺二博 | Hits:

[OS programThread

Description: 实现MFC的多线程编程,主要是工作者线程,附有源码-MFC multi-threaded programming, the worker thread, with a source
Platform: | Size: 2313216 | Author: zhaolei | Hits:

[Windows DevelopBackground-worker-thread-in-ASP.NET

Description: asp.net程序在后台启动线程执行任务的示例,还包括在页面打开时启动线程-Background worker thread in ASP.NET
Platform: | Size: 58368 | Author: oy yl | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net