blob: 63480ce180184a0688dd5584032bc9bd00002ddd [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "FWFInstanceManager.h"
NS_ASSUME_NONNULL_BEGIN
@interface FWFInstanceManager ()
/**
* The next identifier that will be used for a host-created instance.
*/
@property long nextIdentifier;
/**
* The number of instances stored as a strong reference.
*
* Added for debugging purposes.
*/
- (NSUInteger)strongInstanceCount;
/**
* The number of instances stored as a weak reference.
*
* Added for debugging purposes. NSMapTables that store keys or objects as weak reference will be
* reclaimed nondeterministically.
*/
- (NSUInteger)weakInstanceCount;
@end
NS_ASSUME_NONNULL_END