コード例 #1
0
ファイル: ttypes.go プロジェクト: rrudduck/golang-stuff
func NewLogEntry() *LogEntry {
	output := &LogEntry{
		TStruct: thrift.NewTStruct("LogEntry", []thrift.TField{
			thrift.NewTField("category", thrift.STRING, 1),
			thrift.NewTField("message", thrift.STRING, 2),
		}),
	}
	{
	}
	return output
}
コード例 #2
0
ファイル: scribe.go プロジェクト: johnvilsack/golang-stuff
func NewLogResult() *LogResult {
	output := &LogResult{
		TStruct: thrift.NewTStruct("Log_result", []thrift.TField{
			thrift.NewTField("success", thrift.I32, 0),
		}),
	}
	{
	}
	return output
}
コード例 #3
0
ファイル: scribe.go プロジェクト: johnvilsack/golang-stuff
func NewLogArgs() *LogArgs {
	output := &LogArgs{
		TStruct: thrift.NewTStruct("Log_args", []thrift.TField{
			thrift.NewTField("messages", thrift.LIST, 1),
		}),
	}
	{
	}
	return output
}
コード例 #4
0
ファイル: ttypes.go プロジェクト: rrudduck/golang-stuff
func (p *LogEntry) TStructFields() thrift.TFieldContainer {
	return thrift.NewTFieldContainer([]thrift.TField{
		thrift.NewTField("category", thrift.STRING, 1),
		thrift.NewTField("message", thrift.STRING, 2),
	})
}
コード例 #5
0
ファイル: scribe.go プロジェクト: johnvilsack/golang-stuff
func (p *LogResult) TStructFields() thrift.TFieldContainer {
	return thrift.NewTFieldContainer([]thrift.TField{
		thrift.NewTField("success", thrift.I32, 0),
	})
}
コード例 #6
0
ファイル: scribe.go プロジェクト: johnvilsack/golang-stuff
func (p *LogArgs) TStructFields() thrift.TFieldContainer {
	return thrift.NewTFieldContainer([]thrift.TField{
		thrift.NewTField("messages", thrift.LIST, 1),
	})
}