Files
temporal/api/cluster/v1/message.go-helpers.pb.go
Alex Shtin 91893f1064 Remove license header from every file (#7689)
## What changed?
<!-- Describe what has changed in this PR -->
Remove license header from every file. Because it is really hard to
follow in this PR here is the summary:
1. License header is removed from all `.go` and `.proto` files
:fireworks::fireworks:🎆.
2. `LICENSE` file in the root directory has only Temporal and Uber
copyrights.
3. 5 other `LICENSE` files added to the packages which have copyrights
different from Temporal and Uber: Datadog, Xargin, "Mat Ryer, Tyler
Bunnell and contributors".
4. `license_file` flag is removed from all code generation tools.
5. `copyright_file` flag is removed from `go:generate mockgen`
directive.
6. All copyright related targets are removed from `Makefile`.
7. Updated Temporal copyright year to 2025 everywhere.

## Why?
<!-- Tell your future self why have you made these changes -->
I double checked with legal department that it is not needed to have
license header in every file. One file per repo is enough. I put all
copyrights to the root `LICENSE` file and removed header from all other
files. Also updated tools and `Makefile`.
2025-05-01 18:50:21 -07:00

155 lines
3.8 KiB
Go

// Code generated by protoc-gen-go-helpers. DO NOT EDIT.
package cluster
import (
"google.golang.org/protobuf/proto"
)
// Marshal an object of type HostInfo to the protobuf v3 wire format
func (val *HostInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type HostInfo from the protobuf v3 wire format
func (val *HostInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *HostInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two HostInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *HostInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *HostInfo
switch t := that.(type) {
case *HostInfo:
that1 = t
case HostInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type RingInfo to the protobuf v3 wire format
func (val *RingInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type RingInfo from the protobuf v3 wire format
func (val *RingInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *RingInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two RingInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *RingInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *RingInfo
switch t := that.(type) {
case *RingInfo:
that1 = t
case RingInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type MembershipInfo to the protobuf v3 wire format
func (val *MembershipInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type MembershipInfo from the protobuf v3 wire format
func (val *MembershipInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *MembershipInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two MembershipInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *MembershipInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *MembershipInfo
switch t := that.(type) {
case *MembershipInfo:
that1 = t
case MembershipInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type ClusterMember to the protobuf v3 wire format
func (val *ClusterMember) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type ClusterMember from the protobuf v3 wire format
func (val *ClusterMember) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *ClusterMember) Size() int {
return proto.Size(val)
}
// Equal returns whether two ClusterMember values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *ClusterMember) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *ClusterMember
switch t := that.(type) {
case *ClusterMember:
that1 = t
case ClusterMember:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}