File: internal.proto

package info (click to toggle)
golang-github-mesos-mesos-go 0.0.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,964 kB
  • sloc: makefile: 17
file content (23 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package mesosproto;

import "mesos.proto";
import "github.com/gogo/protobuf/gogoproto/gogo.proto";

// For use with detector callbacks
message InternalMasterChangeDetected {
	// will be present if there's a new master, otherwise nil
	optional MasterInfo master = 1;
}

message InternalTryAuthentication {
	// empty message, serves as a signal to the scheduler bindings
}

message InternalAuthenticationResult {
	// true only if the authentication process completed and login was successful
	required bool success = 1;
	// true if the authentication process completed, successfully or not
	required bool completed = 2;
	// master pid that this result pertains to
	required string pid = 3;
}