Files
temporal/api/archiver/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

118 lines
3.0 KiB
Go

// Code generated by protoc-gen-go-helpers. DO NOT EDIT.
package archiver
import (
"google.golang.org/protobuf/proto"
)
// Marshal an object of type HistoryBlobHeader to the protobuf v3 wire format
func (val *HistoryBlobHeader) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type HistoryBlobHeader from the protobuf v3 wire format
func (val *HistoryBlobHeader) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *HistoryBlobHeader) Size() int {
return proto.Size(val)
}
// Equal returns whether two HistoryBlobHeader 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 *HistoryBlobHeader) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *HistoryBlobHeader
switch t := that.(type) {
case *HistoryBlobHeader:
that1 = t
case HistoryBlobHeader:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type HistoryBlob to the protobuf v3 wire format
func (val *HistoryBlob) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type HistoryBlob from the protobuf v3 wire format
func (val *HistoryBlob) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *HistoryBlob) Size() int {
return proto.Size(val)
}
// Equal returns whether two HistoryBlob 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 *HistoryBlob) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *HistoryBlob
switch t := that.(type) {
case *HistoryBlob:
that1 = t
case HistoryBlob:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type VisibilityRecord to the protobuf v3 wire format
func (val *VisibilityRecord) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type VisibilityRecord from the protobuf v3 wire format
func (val *VisibilityRecord) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *VisibilityRecord) Size() int {
return proto.Size(val)
}
// Equal returns whether two VisibilityRecord 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 *VisibilityRecord) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *VisibilityRecord
switch t := that.(type) {
case *VisibilityRecord:
that1 = t
case VisibilityRecord:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}