| 12345678910111213141516171819202122232425262728293031 |
- /*
- * EliasDB
- *
- * Copyright 2016 Matthias Ladkau. All rights reserved.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
- /*
- Package ecal contains the main API for the event condition language ECAL.
- */
- package ecal
- // TODO: Maybe API documentation - access comments during runtime
- /*
- Processor models a top level execution instance for ECAL.
- */
- type Processor interface {
- }
- /*
- processor is the main implementation for the Processor interface.
- */
- type processor struct {
- // TODO: GM GraphManager is part of initial values published in the global scope
- Logger
- }
|