luxlabs header browser preview


@class NSString, TKSharedResource, NSObject;
@protocol OS_dispatch_queue, OS_dispatch_source;

@interface TKSharedResourceSlot : NSObject {
    NSString *_name;
    TKSharedResource *_resource;
    id _object;
    NSObject<OS_dispatch_source> *_idleTimer;
}

@property (copy, nonatomic) id /* block */ createObjectBlock;
@property (copy, nonatomic) id /* block */ objectDestroyedBlock;
@property (nonatomic) double idleTimeout;
@property (retain, nonatomic) NSObject<OS_dispatch_queue> *idleQueue;

- (void)dealloc;
- (id)object;
- (void)releaseResource;
- (id)initWithName:(id)a0;
- (id)description;
- (id)resourceWithError:(id *)a0;
- (void).cxx_destruct;
- (void)destroyObject;

@end