File tree Expand file tree Collapse file tree 10 files changed +20
-0
lines changed
Expand file tree Collapse file tree 10 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package channel provides functionality for managing task communication channels,
26+ // including inbound and outbound channel configuration and message routing.
2527package channel
2628
2729import (
Original file line number Diff line number Diff line change 2525 * Intergovernmental Organization or submit itself to any jurisdiction.
2626 */
2727
28+ // Package schedutil provides scheduler utility functions for Apache Mesos
29+ // integration, including resource management and task scheduling helpers.
2830package schedutil
2931
3032import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package sm provides state machine functionality for task lifecycle management,
26+ // including state transitions and event handling.
2527package sm
2628
2729type Transition struct {
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package port provides port range management functionality for task
26+ // communication, including port range parsing and validation.
2527package port
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package taskclass provides task class definitions and resource management
26+ // for different types of tasks in the O² Control system.
2527package taskclass
2628
2729import "strconv"
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package taskop provides task operation types and message handling functionality
26+ // for controlling task lifecycle and communication.
2527package taskop
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package the provides global event handling and state management for
26+ // the core system, including event writers and system-wide notifications.
2527package the
2628
2729import (
Original file line number Diff line number Diff line change 1+ // Package callable provides utility functions for workflow callable operations,
2+ // including timeout handling and trigger expression parsing.
13package callable
24
35import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package nopb provides non-protobuf encoding functionality including
26+ // JSON codec implementations for gRPC communication.
2527package nopb
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package transitioner provides transition management functionality for
26+ // handling task state transitions with different transition strategies.
2527package transitioner
2628
2729type Direct struct {
You can’t perform that action at this time.
0 commit comments