factorymodulepb

package
v0.3.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 5, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_factorymodulepb_factorymodulepb_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type EchoModuleParams

type EchoModuleParams struct {
	Prefix string `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"` // This prefix is prepended to all strings the module echoes.
	// contains filtered or unexported fields
}

Used only for unit tests.

func (*EchoModuleParams) Descriptor deprecated

func (*EchoModuleParams) Descriptor() ([]byte, []int)

Deprecated: Use EchoModuleParams.ProtoReflect.Descriptor instead.

func (*EchoModuleParams) GetPrefix

func (x *EchoModuleParams) GetPrefix() string

func (*EchoModuleParams) ProtoMessage

func (*EchoModuleParams) ProtoMessage()

func (*EchoModuleParams) ProtoReflect

func (x *EchoModuleParams) ProtoReflect() protoreflect.Message

func (*EchoModuleParams) Reset

func (x *EchoModuleParams) Reset()

func (*EchoModuleParams) String

func (x *EchoModuleParams) String() string

type Factory

type Factory struct {

	// Types that are assignable to Type:
	//	*Factory_NewModule
	//	*Factory_GarbageCollect
	Type isFactory_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*Factory) Descriptor deprecated

func (*Factory) Descriptor() ([]byte, []int)

Deprecated: Use Factory.ProtoReflect.Descriptor instead.

func (*Factory) GetGarbageCollect

func (x *Factory) GetGarbageCollect() *GarbageCollect

func (*Factory) GetNewModule

func (x *Factory) GetNewModule() *NewModule

func (*Factory) GetType

func (m *Factory) GetType() isFactory_Type

func (*Factory) ProtoMessage

func (*Factory) ProtoMessage()

func (*Factory) ProtoReflect

func (x *Factory) ProtoReflect() protoreflect.Message

func (*Factory) Reset

func (x *Factory) Reset()

func (*Factory) String

func (x *Factory) String() string

type Factory_GarbageCollect

type Factory_GarbageCollect struct {
	GarbageCollect *GarbageCollect `protobuf:"bytes,2,opt,name=garbage_collect,json=garbageCollect,proto3,oneof"`
}

type Factory_NewModule

type Factory_NewModule struct {
	NewModule *NewModule `protobuf:"bytes,1,opt,name=new_module,json=newModule,proto3,oneof"`
}

type GarbageCollect

type GarbageCollect struct {
	RetentionIndex uint64 `protobuf:"varint,1,opt,name=retention_index,json=retentionIndex,proto3" json:"retention_index,omitempty"`
	// contains filtered or unexported fields
}

func (*GarbageCollect) Descriptor deprecated

func (*GarbageCollect) Descriptor() ([]byte, []int)

Deprecated: Use GarbageCollect.ProtoReflect.Descriptor instead.

func (*GarbageCollect) GetRetentionIndex

func (x *GarbageCollect) GetRetentionIndex() uint64

func (*GarbageCollect) ProtoMessage

func (*GarbageCollect) ProtoMessage()

func (*GarbageCollect) ProtoReflect

func (x *GarbageCollect) ProtoReflect() protoreflect.Message

func (*GarbageCollect) Reset

func (x *GarbageCollect) Reset()

func (*GarbageCollect) String

func (x *GarbageCollect) String() string

type GeneratorParams

type GeneratorParams struct {

	// Types that are assignable to Type:
	//	*GeneratorParams_MultisigCollector
	//	*GeneratorParams_Checkpoint
	//	*GeneratorParams_EchoTestModule
	//	*GeneratorParams_PbftModule
	Type isGeneratorParams_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*GeneratorParams) Descriptor deprecated

func (*GeneratorParams) Descriptor() ([]byte, []int)

Deprecated: Use GeneratorParams.ProtoReflect.Descriptor instead.

func (*GeneratorParams) GetCheckpoint

func (x *GeneratorParams) GetCheckpoint() *checkpointpb.InstanceParams

func (*GeneratorParams) GetEchoTestModule

func (x *GeneratorParams) GetEchoTestModule() *EchoModuleParams

func (*GeneratorParams) GetMultisigCollector

func (x *GeneratorParams) GetMultisigCollector() *mscpb.InstanceParams

func (*GeneratorParams) GetPbftModule added in v0.2.0

func (x *GeneratorParams) GetPbftModule() *ordererspb.PBFTModule

func (*GeneratorParams) GetType

func (m *GeneratorParams) GetType() isGeneratorParams_Type

func (*GeneratorParams) ProtoMessage

func (*GeneratorParams) ProtoMessage()

func (*GeneratorParams) ProtoReflect

func (x *GeneratorParams) ProtoReflect() protoreflect.Message

func (*GeneratorParams) Reset

func (x *GeneratorParams) Reset()

func (*GeneratorParams) String

func (x *GeneratorParams) String() string

type GeneratorParams_Checkpoint

type GeneratorParams_Checkpoint struct {
	Checkpoint *checkpointpb.InstanceParams `protobuf:"bytes,2,opt,name=checkpoint,proto3,oneof"`
}

type GeneratorParams_EchoTestModule

type GeneratorParams_EchoTestModule struct {
	EchoTestModule *EchoModuleParams `protobuf:"bytes,3,opt,name=echo_test_module,json=echoTestModule,proto3,oneof"`
}

type GeneratorParams_MultisigCollector

type GeneratorParams_MultisigCollector struct {
	MultisigCollector *mscpb.InstanceParams `protobuf:"bytes,1,opt,name=multisig_collector,json=multisigCollector,proto3,oneof"`
}

type GeneratorParams_PbftModule added in v0.2.0

type GeneratorParams_PbftModule struct {
	PbftModule *ordererspb.PBFTModule `protobuf:"bytes,4,opt,name=pbft_module,json=pbftModule,proto3,oneof"`
}

type NewModule

type NewModule struct {
	ModuleId       string           `protobuf:"bytes,1,opt,name=module_id,json=moduleId,proto3" json:"module_id,omitempty"`
	RetentionIndex uint64           `protobuf:"varint,2,opt,name=retention_index,json=retentionIndex,proto3" json:"retention_index,omitempty"`
	Params         *GeneratorParams `protobuf:"bytes,3,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

func (*NewModule) Descriptor deprecated

func (*NewModule) Descriptor() ([]byte, []int)

Deprecated: Use NewModule.ProtoReflect.Descriptor instead.

func (*NewModule) GetModuleId

func (x *NewModule) GetModuleId() string

func (*NewModule) GetParams

func (x *NewModule) GetParams() *GeneratorParams

func (*NewModule) GetRetentionIndex

func (x *NewModule) GetRetentionIndex() uint64

func (*NewModule) ProtoMessage

func (*NewModule) ProtoMessage()

func (*NewModule) ProtoReflect

func (x *NewModule) ProtoReflect() protoreflect.Message

func (*NewModule) Reset

func (x *NewModule) Reset()

func (*NewModule) String

func (x *NewModule) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL