This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class BinaryResponse(contentType: ContentType, data: Enumerator[Array[Byte]]) | |
trait SharedJSONFormats extends DefaultJsonProtocol with MetaMarshallers with SprayJsonSupport { | |
implicit def binaryResponseMarshaller(implicit actorRefFactory: ActorRefFactory, executionContext: ExecutionContext, timeout: Timeout) = ToResponseMarshaller[BinaryResponse] { (value, toResponseMarshallingContext) => | |
val responseStreamerActor: ActorRef = actorRefFactory.actorOf { | |
Props { | |
new Actor with ActorLogging { | |
object ChunkSent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash-3.2$ brew doctor | |
Your system is ready to brew. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "Assembly+CoreData.h" | |
#import <Typhoon/Typhoon.h> | |
#import <CoreData/CoreData.h> | |
#pragma mark NSPersistentStoreCoordinator configuration | |
@interface NSPersistentStoreCoordinator (InjectedConfiguration) | |
- (void)configureStoreCoordinatorUsingDefaultComponentFactory; | |
- (void)configureStoreCoordinatorUsingDefaultComponentFactoryWithLightweightMigration; |