adamoracle

package
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 19, 2021 License: MIT Imports: 38 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AdamoracleApplication

type AdamoracleApplication struct {
	Exiter          func(int)
	HeadTracker     *services.HeadTracker
	HeadBroadcaster *services.HeadBroadcaster
	StatsPusher     synchronization.StatsPusher
	services.RunManager
	RunQueue         services.RunQueue
	JobSubscriber    services.JobSubscriber
	EthBroadcaster   bulletprooftxmanager.EthBroadcaster
	LogBroadcaster   log.Broadcaster
	EventBroadcaster postgres.EventBroadcaster
	JobORM           job.ORM

	FluxMonitor              fluxmonitor.Service
	Scheduler                *services.Scheduler
	Store                    *strpkg.Store
	ExternalInitiatorManager ExternalInitiatorManager
	SessionReaper            utils.SleeperTask
	// contains filtered or unexported fields
}

AdamoracleApplication contains fields for the JobSubscriber, Scheduler, and Store. The JobSubscriber and Scheduler are also available in the services package, but the Store has its own package.

func (*AdamoracleApplication) AddJob

func (app *AdamoracleApplication) AddJob(job models.JobSpec) error

AddJob adds a job to the store and the scheduler. If there was an error from adding the job to the store, the job will not be added to the scheduler.

func (*AdamoracleApplication) AddJobV2

func (app *AdamoracleApplication) AddJobV2(ctx context.Context, job job.Job, name null.String) (int32, error)

func (*AdamoracleApplication) AddServiceAgreement

func (app *AdamoracleApplication) AddServiceAgreement(sa *models.ServiceAgreement) error

AddServiceAgreement adds a Service Agreement which includes a job that needs to be scheduled.

func (*AdamoracleApplication) ArchiveJob

func (app *AdamoracleApplication) ArchiveJob(ID models.JobID) error

ArchiveJob silences the job from the system, preventing future job runs. It is idempotent and can be run as many times as you like.

func (*AdamoracleApplication) DeleteJobV2

func (app *AdamoracleApplication) DeleteJobV2(ctx context.Context, jobID int32) error

func (*AdamoracleApplication) GetExternalInitiatorManager

func (app *AdamoracleApplication) GetExternalInitiatorManager() ExternalInitiatorManager

func (*AdamoracleApplication) GetJobORM

func (app *AdamoracleApplication) GetJobORM() job.ORM

func (*AdamoracleApplication) GetStatsPusher

func (app *AdamoracleApplication) GetStatsPusher() synchronization.StatsPusher

func (*AdamoracleApplication) GetStore

func (app *AdamoracleApplication) GetStore() *strpkg.Store

GetStore returns the pointer to the store for the AdamoracleApplication.

func (*AdamoracleApplication) NewBox

func (app *AdamoracleApplication) NewBox() packr.Box

NewBox returns the packr.Box instance that holds the static assets to be delivered by the router.

func (*AdamoracleApplication) RunJobV2

func (app *AdamoracleApplication) RunJobV2(ctx context.Context, jobID int32, meta map[string]interface{}) (int64, error)

Only used for testing, not supported by the UI.

func (*AdamoracleApplication) Start

func (app *AdamoracleApplication) Start() error

Start all necessary services. If successful, nil will be returned. Also listens for interrupt signals from the operating system so that the application can be properly closed before the application exits.

func (*AdamoracleApplication) Stop

func (app *AdamoracleApplication) Stop() error

Stop allows the application to exit by halting schedules, closing logs, and closing the DB connection.

func (*AdamoracleApplication) StopIfStarted

func (app *AdamoracleApplication) StopIfStarted() error

func (*AdamoracleApplication) WakeSessionReaper

func (app *AdamoracleApplication) WakeSessionReaper()

WakeSessionReaper wakes up the reaper to do its reaping.

type Application

type Application interface {
	Start() error
	Stop() error
	GetStore() *strpkg.Store
	GetJobORM() job.ORM
	GetExternalInitiatorManager() ExternalInitiatorManager
	GetStatsPusher() synchronization.StatsPusher
	WakeSessionReaper()
	AddJob(job models.JobSpec) error
	AddJobV2(ctx context.Context, job job.Job, name null.String) (int32, error)
	ArchiveJob(models.JobID) error
	DeleteJobV2(ctx context.Context, jobID int32) error
	RunJobV2(ctx context.Context, jobID int32, meta map[string]interface{}) (int64, error)
	AddServiceAgreement(*models.ServiceAgreement) error
	NewBox() packr.Box
	services.RunManager
}

Application implements the common functions used in the core node.

func NewApplication

func NewApplication(config *orm.Config, ethClient eth.Client, advisoryLocker postgres.AdvisoryLocker, keyStoreGenerator strpkg.KeyStoreGenerator, externalInitiatorManager ExternalInitiatorManager, onConnectCallbacks ...func(Application)) (Application, error)

NewApplication initializes a new store if one is not already present at the configured root directory (default: ~/.adamoracle), the logger at the same directory and returns the Application to be used by the node.

type ExternalInitiatorManager

type ExternalInitiatorManager interface {
	Notify(models.JobSpec, *strpkg.Store) error
	DeleteJob(db *gorm.DB, jobID models.JobID) error
}

ExternalInitiatorManager manages HTTP requests to remote external initiators

type StartCloser

type StartCloser interface {
	Start() error
	Close() error
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL