forked from apache/eventmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
12 additions
and
20 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
...r/src/main/java/com/apache/eventmesh/admin/server/web/handler/FetchJobRequestHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.apache.eventmesh.admin.server.web.handler; | ||
|
||
import org.apache.eventmesh.common.adminserver.request.FetchJobRequest; | ||
import org.apache.eventmesh.common.adminserver.response.JobResponse; | ||
import org.apache.eventmesh.common.adminserver.response.FetchJobResponse; | ||
import org.apache.eventmesh.common.protocol.grpc.adminserver.Metadata; | ||
|
||
public class FetchJobRequestHandler extends AbstractRequestHandler<FetchJobRequest, JobResponse> { | ||
public class FetchJobRequestHandler extends AbstractRequestHandler<FetchJobRequest, FetchJobResponse> { | ||
|
||
@Override | ||
public JobResponse handler(FetchJobRequest request, Metadata metadata) { | ||
JobResponse response = new JobResponse(); | ||
public FetchJobResponse handler(FetchJobRequest request, Metadata metadata) { | ||
FetchJobResponse response = new FetchJobResponse(); | ||
return response; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 5 additions & 6 deletions
11
...ain/java/org/apache/eventmesh/common/protocol/grpc/adminserver/EventMeshAdminService.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters