defmodule Cratis.Chronicle.Contracts.Clients.ConnectRequest do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :ConnectionId, 1, type: :string field :ClientVersion, 2, type: :string field :IsRunningWithDebugger, 3, type: :bool field :ProcessId, 4, type: :int32 field :ProcessPath, 5, type: :string field :MachineName, 6, type: :string field :ClientType, 7, type: :string end defmodule Cratis.Chronicle.Contracts.Clients.ConnectedClient do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :ConnectionId, 1, type: :string field :Version, 2, type: :string field :LastSeen, 3, type: Cratis.Chronicle.Contracts.Clients.SerializableDateTimeOffset field :IsRunningWithDebugger, 4, type: :bool field :SiloAddress, 5, type: :string field :ProcessId, 6, type: :int32 field :ProcessPath, 7, type: :string field :MachineName, 8, type: :string field :ClientType, 9, type: :string end defmodule Cratis.Chronicle.Contracts.Clients.ConnectionKeepAlive do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :ConnectionId, 1, type: :string end defmodule Cratis.Chronicle.Contracts.Clients.DescriptorSetResponse do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :SchemaDefinition, 1, type: :string end defmodule Cratis.Chronicle.Contracts.Clients.IEnumerable_ConnectedClient do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :items, 1, repeated: true, type: Cratis.Chronicle.Contracts.Clients.ConnectedClient end defmodule Cratis.Chronicle.Contracts.Clients.SerializableDateTimeOffset do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.17.0", syntax: :proto3 field :Value, 1, type: :string end defmodule Cratis.Chronicle.Contracts.Clients.ConnectionService.Service do @moduledoc false use GRPC.Service, name: "Cratis.Chronicle.Contracts.Clients.ConnectionService", protoc_gen_elixir_version: "0.17.0" rpc :Connect, Cratis.Chronicle.Contracts.Clients.ConnectRequest, stream(Cratis.Chronicle.Contracts.Clients.ConnectionKeepAlive) rpc :ConnectionKeepAlive, Cratis.Chronicle.Contracts.Clients.ConnectionKeepAlive, Google.Protobuf.Empty rpc :GetConnectedClients, Google.Protobuf.Empty, Cratis.Chronicle.Contracts.Clients.IEnumerable_ConnectedClient rpc :GetDescriptorSet, Google.Protobuf.Empty, Cratis.Chronicle.Contracts.Clients.DescriptorSetResponse rpc :ObserveConnectedClients, Google.Protobuf.Empty, stream(Cratis.Chronicle.Contracts.Clients.IEnumerable_ConnectedClient) end defmodule Cratis.Chronicle.Contracts.Clients.ConnectionService.Stub do @moduledoc false use GRPC.Stub, service: Cratis.Chronicle.Contracts.Clients.ConnectionService.Service end