Documentation ¶
Overview ¶
Copyright 2018 StreamSets Inc. 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
http://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.
Copyright 2018 StreamSets Inc. 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
http://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.
Index ¶
- Constants
- type FilePipelineStoreTask
- func (store *FilePipelineStoreTask) Create(pipelineId string, pipelineTitle string, description string, isRemote bool) (common.PipelineConfiguration, error)
- func (store *FilePipelineStoreTask) Delete(pipelineId string) error
- func (store *FilePipelineStoreTask) GetInfo(pipelineId string) (common.PipelineInfo, error)
- func (store *FilePipelineStoreTask) GetPipelines() ([]common.PipelineInfo, error)
- func (store *FilePipelineStoreTask) LoadPipelineConfig(pipelineId string) (common.PipelineConfiguration, error)
- func (store *FilePipelineStoreTask) Save(pipelineId string, pipelineConfiguration common.PipelineConfiguration) (common.PipelineConfiguration, error)
- type PipelineStoreTask
Constants ¶
const ( PipelineFile = "pipeline.json" PipelineInfoFile = "info.json" PipelinesFolder = "/data/pipelines/" PipelinesRunInfoFolder = "/data/runInfo/" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FilePipelineStoreTask ¶
type FilePipelineStoreTask struct {
// contains filtered or unexported fields
}
func (*FilePipelineStoreTask) Create ¶
func (store *FilePipelineStoreTask) Create( pipelineId string, pipelineTitle string, description string, isRemote bool, ) (common.PipelineConfiguration, error)
func (*FilePipelineStoreTask) Delete ¶
func (store *FilePipelineStoreTask) Delete(pipelineId string) error
func (*FilePipelineStoreTask) GetInfo ¶
func (store *FilePipelineStoreTask) GetInfo(pipelineId string) (common.PipelineInfo, error)
func (*FilePipelineStoreTask) GetPipelines ¶
func (store *FilePipelineStoreTask) GetPipelines() ([]common.PipelineInfo, error)
func (*FilePipelineStoreTask) LoadPipelineConfig ¶
func (store *FilePipelineStoreTask) LoadPipelineConfig(pipelineId string) (common.PipelineConfiguration, error)
func (*FilePipelineStoreTask) Save ¶
func (store *FilePipelineStoreTask) Save( pipelineId string, pipelineConfiguration common.PipelineConfiguration, ) (common.PipelineConfiguration, error)
type PipelineStoreTask ¶
type PipelineStoreTask interface { GetPipelines() ([]common.PipelineInfo, error) GetInfo(pipelineId string) (common.PipelineInfo, error) Create( pipelineId string, pipelineTitle string, description string, isRemote bool, ) (common.PipelineConfiguration, error) Save(pipelineId string, pipelineConfiguration common.PipelineConfiguration) (common.PipelineConfiguration, error) LoadPipelineConfig(pipelineId string) (common.PipelineConfiguration, error) Delete(pipelineId string) error }
func NewFilePipelineStoreTask ¶
func NewFilePipelineStoreTask(runtimeInfo common.RuntimeInfo) PipelineStoreTask