提交 f9720321 编写于 作者: 武汉红喜's avatar 武汉红喜

whatsmars-rpc

上级 17752e7a
......@@ -17,7 +17,7 @@
<module>whatsmars-dbrouter</module>
<module>whatsmars-elasticjob</module>
<module>whatsmars-dubbo</module>
<module>whatsmars-lightrpc</module>
<module>whatsmars-rpc</module>
<module>whatsmars-mq</module>
<module>whatsmars-redis</module>
<module>whatsmars-spring-cloud</module>
......
......@@ -9,13 +9,13 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lightrpc</artifactId>
<artifactId>whatsmars-rpc</artifactId>
<packaging>pom</packaging>
<modules>
<module>lightrpc-rpc</module>
<module>lightrpc-remoting</module>
<module>lightrpc-serialization</module>
<module>whatsmars-remoting</module>
<module>whatsmars-serialization</module>
<module>whatsmars-rpc-grpc</module>
</modules>
......
......@@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>lightrpc</artifactId>
<artifactId>whatsmars-rpc</artifactId>
<groupId>org.hongxi</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lightrpc-remoting</artifactId>
<artifactId>whatsmars-remoting</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<url>http://maven.apache.org</url>
......
......@@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>lightrpc</artifactId>
<artifactId>whatsmars-rpc</artifactId>
<groupId>org.hongxi</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lightrpc-rpc</artifactId>
<artifactId>whatsmars-rpc-grpc</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<url>http://maven.apache.org</url>
......
......@@ -2,9 +2,9 @@ package org.hongxi.lightrpc.rpc.grpc.client;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import org.hongxi.lightrpc.rpc.grpc.service.HelloServiceGrpc;
import org.hongxi.lightrpc.rpc.grpc.service.HelloRequest;
import org.hongxi.lightrpc.rpc.grpc.service.HelloResponse;
import org.hongxi.whatsmars.rpc.grpc.service.HelloServiceGrpc;
import org.hongxi.whatsmars.rpc.grpc.service.HelloRequest;
import org.hongxi.whatsmars.rpc.grpc.service.HelloResponse;
import java.util.concurrent.TimeUnit;
......
......@@ -3,9 +3,9 @@ package org.hongxi.lightrpc.rpc.grpc.server;
import io.grpc.Server;
import io.grpc.ServerBuilder;
import io.grpc.stub.StreamObserver;
import org.hongxi.lightrpc.rpc.grpc.service.HelloServiceGrpc;
import org.hongxi.lightrpc.rpc.grpc.service.HelloRequest;
import org.hongxi.lightrpc.rpc.grpc.service.HelloResponse;
import org.hongxi.whatsmars.rpc.grpc.service.HelloServiceGrpc;
import org.hongxi.whatsmars.rpc.grpc.service.HelloRequest;
import org.hongxi.whatsmars.rpc.grpc.service.HelloResponse;
import java.io.IOException;
......
syntax = "proto3";
option java_multiple_files = true;
option java_package = "org.hongxi.lightrpc.rpc.grpc.service";
option java_package = "org.hongxi.whatsmars.rpc.grpc.service";
option java_outer_classname = "HelloWorldProto";
option objc_class_prefix = "HLW";
......
......@@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>lightrpc</artifactId>
<artifactId>whatsmars-rpc</artifactId>
<groupId>org.hongxi</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lightrpc-serialization</artifactId>
<artifactId>whatsmars-serialization</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<url>http://maven.apache.org</url>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册