blob: b48f1a895fbaf1956153b112fe437bb6bb11293b [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package triple_protocol_test
import (
"context"
"log"
"os"
)
import (
tri "dubbo.apache.org/dubbo-go/v3/protocol/triple/triple_protocol"
pingv1 "dubbo.apache.org/dubbo-go/v3/protocol/triple/triple_protocol/internal/gen/proto/connect/ping/v1"
"dubbo.apache.org/dubbo-go/v3/protocol/triple/triple_protocol/internal/gen/proto/connect/ping/v1/pingv1connect"
)
func Example_client() {
logger := log.New(os.Stdout, "" /* prefix */, 0 /* flags */)
// Unfortunately, pkg.go.dev can't run examples that actually use the
// network. To keep this example runnable, we'll use an HTTP server and
// client that communicate over in-memory pipes. The client is still a plain
// *http.Client!
httpClient := examplePingServer.Client()
// By default, clients use the GRPC protocol. Add triple_protocol.WithTriple() or
// triple_protocol.WithGRPCWeb() to switch protocols.
client := pingv1connect.NewPingServiceClient(
httpClient,
examplePingServer.URL(),
)
response := tri.NewResponse(&pingv1.PingResponse{})
if err := client.Ping(
context.Background(),
tri.NewRequest(&pingv1.PingRequest{Number: 42}),
response,
); err != nil {
logger.Println("error:", err)
return
}
logger.Println("response content-type:", response.Header().Get("Content-Type"))
logger.Println("response message:", response.Msg)
// Output:
// response content-type: application/grpc+proto
// response message: number:42
}