Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1269362
  • 博文数量: 287
  • 博客积分: 11000
  • 博客等级: 上将
  • 技术积分: 3833
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-16 08:43
文章分类
文章存档

2013年(15)

2012年(17)

2011年(17)

2010年(135)

2009年(85)

2008年(18)

分类: 系统运维

2009-05-01 09:23:43

RPGIV编程问题百解(17)Multithread(2)JOBQ多线程举例(英文)
 
Here we have a subsystem called HBATCH with the appropriate JobQ's attached:
 Subsystem description:   HBATCH         Status:  
  Seq  Job                       Max  
  Nbr  Queue      Library     Active   1   2   3   4   5   6   7   8   9      
    5  HBATCH     QGPL             1   *   *   *   *   *   *   *   *   *      
   10  QBATCH     QGPL             9   1   1   1   1   1   1   1   1   1      
   15  ITEMCONV   ITEMCONV        10   *   *   *   *   *   *   *   *   *     
 
Some termonlogy
---------Max by Priority---------- = Job priorities which we will call threads
JobQ's
HBatch - Truly a single threaded jobq because "Max Active" is set to 1
QBatch - This is a Multi-threaded jobq with single threaded "Job Priority's"
         (I will explain)
ItemConv - is truly Multi-threaded jobq in that it has a "Max Active" of 10 and
           all it's "Job priority's" are set to * (* = Nomax)
阅读(1201) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

passthru2009-06-26 23:13:33

单线程处理的job属性

chinaunix网友2009-06-25 14:06:10

QBatch - This is a Multi-threaded jobq with single threaded "Job Priority's" (I will explain) 这个是什么意思(with single threaded "Job Priority's", ---------Max by Priority---------- 1 2 3 4 5 6 7 8 9 1 1 1 1 1 1 1 1 1 最后一行的1是什么意思,请教。