mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-25 05:59:55 +00:00
- Add detailed English doc comments for all main annotations (inject, injectable, instance, provide, scope, etc) - Add fully documented example/example.dart illustrating real-world DI scenario - Clarify stub sections (Module class, generated mixins) - Aligns package with pub.dev quality and best practice requirements No breaking changes.
51 lines
1.6 KiB
Dart
51 lines
1.6 KiB
Dart
//
|
|
// Copyright 2021 Sergey Penkovsky (sergey.penkovsky@gmail.com)
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import 'package:meta/meta.dart';
|
|
|
|
/// Marks a provider method or class to always create a new instance (factory) in CherryPick DI.
|
|
///
|
|
/// Use `@instance()` to annotate methods or classes in your DI module/class
|
|
/// when you want a new object to be created on every injection (no singleton caching).
|
|
/// The default DI lifecycle is instance/factory unless otherwise specified.
|
|
///
|
|
/// ### Example (in a module method)
|
|
/// ```dart
|
|
/// import 'package:cherrypick_annotations/cherrypick_annotations.dart';
|
|
///
|
|
/// @module()
|
|
/// abstract class FeatureModule {
|
|
/// @instance()
|
|
/// MyService provideService() => MyService();
|
|
///
|
|
/// @singleton()
|
|
/// Logger provideLogger() => Logger();
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// ### Example (on a class, with @injectable)
|
|
/// ```dart
|
|
/// @injectable()
|
|
/// @instance()
|
|
/// class MyFactoryClass {
|
|
/// // ...
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// See also: [@singleton]
|
|
@experimental
|
|
final class instance {
|
|
/// Creates an [instance] annotation for classes or providers.
|
|
const instance();
|
|
}
|