github.com/turingchain2020/turingchain@v1.1.21/cmd/tools/tasks/task.go (about)

     1  // Copyright Turing Corp. 2018 All Rights Reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package tasks 处理的事务任务
     6  package tasks
     7  
     8  // Task 处理的事务任务
     9  type Task interface {
    10  	GetName() string
    11  	Next() Task
    12  	SetNext(t Task)
    13  
    14  	Execute() error
    15  }