// // CleanupCrew.h // Limelight // // Created by Diego Waxemberg on 4/5/15. // Copyright (c) 2015 Limelight Stream. All rights reserved. // #import #import "Host.h" @protocol CleanupCallback - (void) cleanedUpHosts:(NSSet*) host; @end @interface CleanupCrew : NSOperation - (id) initWithHostList:(NSArray*) hostList andCallback:(id)callback; @end