2025-05-18 14:01:00 +03:00
|
|
|
|
//
|
|
|
|
|
|
// 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
|
2025-08-08 23:24:05 +03:00
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2025-05-18 14:01:00 +03:00
|
|
|
|
// 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.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
2025-05-23 08:21:11 +03:00
|
|
|
|
/// ENGLISH:
|
|
|
|
|
|
/// Annotation to mark a method parameter for injection with run-time arguments.
|
2025-05-22 13:52:56 +03:00
|
|
|
|
///
|
2025-05-23 08:21:11 +03:00
|
|
|
|
/// Use the `@params()` annotation to specify that a particular parameter of a
|
|
|
|
|
|
/// provider method should be assigned a value supplied at resolution time,
|
|
|
|
|
|
/// rather than during static dependency graph creation. This is useful in DI
|
|
|
|
|
|
/// when a dependency must receive dynamic data passed by the consumer
|
|
|
|
|
|
/// (via `.withParams(...)` in the generated code).
|
2025-05-22 13:52:56 +03:00
|
|
|
|
///
|
|
|
|
|
|
/// Example:
|
|
|
|
|
|
/// ```dart
|
|
|
|
|
|
/// @provide()
|
|
|
|
|
|
/// String greet(@params() dynamic params) => 'Hello $params';
|
|
|
|
|
|
/// ```
|
|
|
|
|
|
///
|
|
|
|
|
|
/// This will generate:
|
|
|
|
|
|
/// ```dart
|
|
|
|
|
|
/// bind<String>().toProvideWithParams((args) => greet(args));
|
|
|
|
|
|
/// ```
|
2025-05-23 08:21:11 +03:00
|
|
|
|
///
|
|
|
|
|
|
/// RUSSIAN (Русский):
|
|
|
|
|
|
/// Аннотация для пометки параметра метода, который будет внедряться со значением во время выполнения.
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Используйте `@params()` чтобы указать, что конкретный параметр метода-провайдера
|
|
|
|
|
|
/// должен получать значение, передаваемое в момент обращения к зависимости,
|
|
|
|
|
|
/// а не на этапе построения графа зависимостей. Это полезно, если зависимость
|
|
|
|
|
|
/// должна получать данные динамически от пользователя или другого процесса
|
|
|
|
|
|
/// через `.withParams(...)` в сгенерированном коде.
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Пример:
|
|
|
|
|
|
/// ```dart
|
|
|
|
|
|
/// @provide()
|
|
|
|
|
|
/// String greet(@params() dynamic params) => 'Hello $params';
|
|
|
|
|
|
/// ```
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Будет сгенерировано:
|
|
|
|
|
|
/// ```dart
|
|
|
|
|
|
/// bind<String>().toProvideWithParams((args) => greet(args));
|
|
|
|
|
|
/// ```
|
2025-05-17 00:34:56 +03:00
|
|
|
|
// ignore: camel_case_types
|
2025-05-21 12:23:33 +03:00
|
|
|
|
final class params {
|
|
|
|
|
|
const params();
|
2025-05-17 00:34:56 +03:00
|
|
|
|
}
|