You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
728 B
Go
44 lines
728 B
Go
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// DO NOT EDIT THIS PART
|
|
// Your task is to edit `main.go`
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"time"
|
|
)
|
|
|
|
// MockProcess for example
|
|
type MockProcess struct {
|
|
isRunning bool
|
|
}
|
|
|
|
// Run will start the process
|
|
func (m *MockProcess) Run() {
|
|
m.isRunning = true
|
|
|
|
fmt.Print("Process running..")
|
|
for {
|
|
fmt.Print(".")
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
}
|
|
|
|
// Stop tries to gracefully stop the process, in this mock example
|
|
// this will not succeed
|
|
func (m *MockProcess) Stop() {
|
|
if !m.isRunning {
|
|
log.Fatal("Cannot stop a process which is not running")
|
|
}
|
|
|
|
fmt.Print("\nStopping process..")
|
|
for {
|
|
fmt.Print(".")
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
}
|