blob: 90b4f00aeaccbd5ce1d304b643fd28cc81a689c5 [file] [log] [blame]
//
// RACEmptySignal.h
// ReactiveCocoa
//
// Created by Justin Spahr-Summers on 2013-10-10.
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
//
#import "RACSignal.h"
// A private `RACSignal` subclasses that synchronously sends completed to any
// subscribers.
@interface RACEmptySignal : RACSignal
+ (RACSignal *)empty;
@end