github.com/rochacon/deis@v1.0.2-0.20150903015341-6839b592a1ff/mesos/pkg/types/current-boot.go (about)

     1  package types
     2  
     3  import (
     4  	"net"
     5  	"time"
     6  
     7  	"github.com/deis/deis/mesos/pkg/etcd"
     8  )
     9  
    10  // CurrentBoot information about the boot
    11  // process related to the component
    12  type CurrentBoot struct {
    13  	ConfdNodes []string
    14  	EtcdClient *etcd.Client
    15  	EtcdPath   string
    16  	EtcdPort   int
    17  	EtcdPeers  string
    18  	EtcdURL    []string
    19  	Host       net.IP
    20  	Port       int
    21  	Timeout    time.Duration
    22  	TTL        time.Duration
    23  }