All Downloads are FREE. Search and download functionalities are using the official Maven repository.

e.servicelibs.ReactorChat-Client-Kt.0.7.3.source-code.Chat.proto Maven / Gradle / Ivy

syntax = "proto3";

package com.salesforce.servicelibs;

option java_package = "com.salesforce.servicelibs";
option java_outer_classname = "ChatProto";

import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";

service Chat {
    rpc PostMessage (ChatMessage) returns (google.protobuf.Empty) {}
    rpc GetMessages (google.protobuf.Empty) returns (stream ChatMessage) {}
}

message ChatMessage {
    google.protobuf.Timestamp when = 1;
    string author = 2;
    string message = 3;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy