Browse Subversion Repository
Annotation of /XspfManager/XspfMChannelManager.h
Parent Directory
| Revision Log
Revision 85 -
( hide annotations)
( download)
( as text)
Thu Nov 19 11:44:30 2009 UTC
(14 years, 5 months ago)
by masaki
File MIME type: text/x-chdr
File size: 417 byte(s)
[New] メインスレッドで実行するリクエストと別スレッドで実行するリクエストに分け統合管理するようにした。
| 1 |
masaki |
85 |
// |
| 2 |
|
|
// XspfMChannelManager.h |
| 3 |
|
|
// XspfManager |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 09/11/18. |
| 6 |
|
|
// Copyright 2009 masakih. All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
#import <Cocoa/Cocoa.h> |
| 10 |
|
|
|
| 11 |
|
|
#import "HMWorkerProtocols.h" |
| 12 |
|
|
|
| 13 |
|
|
@interface XspfMChannelManager : NSObject <HMChannel> |
| 14 |
|
|
{ |
| 15 |
|
|
id<HMChannel> channel; |
| 16 |
|
|
id<HMChannel> mainThreadChannel; |
| 17 |
|
|
|
| 18 |
|
|
NSInteger channelRequestNum; |
| 19 |
|
|
NSInteger mainThreadChannelRequestNum; |
| 20 |
|
|
} |
| 21 |
|
|
|
| 22 |
|
|
- (NSInteger)requestNum; |
| 23 |
|
|
|
| 24 |
|
|
@end |
|