platform/packages/contracts/lib/src/pipeline/hub.dart

6 lines
175 B
Dart
Raw Normal View History

/// Interface for pipeline management.
abstract class Hub {
/// Send an object through one of the available pipelines.
dynamic pipe(dynamic object, [String? pipeline]);
}