another.im-ios/Monal/Classes/MLPipe.h
2024-11-18 15:53:52 +01:00

24 lines
504 B
Objective-C
Executable file

//
// MLPipe.h
// Monal
//
// Created by Thilo Molitor on 03.05.20.
// Copyright © 2020 Monal.im. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MLConstants.h"
NS_ASSUME_NONNULL_BEGIN
@interface MLPipe : NSObject<NSStreamDelegate>
-(id) initWithInputStream:(NSInputStream*) inputStream andOuterDelegate:(id <NSStreamDelegate>) outerDelegate;
-(void) close;
-(NSInputStream*) getNewOutputStream;
-(NSNumber*) drainInputStreamAndCloseOutputStream;
@end
NS_ASSUME_NONNULL_END