org.apache.flink.runtime.rest.handler.async.OperationKey Java Examples

The following examples show how to use org.apache.flink.runtime.rest.handler.async.OperationKey. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SavepointDisposalHandlers.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey createOperationKey(HandlerRequest<SavepointDisposalRequest, EmptyMessageParameters> request) {
	return new OperationKey(new TriggerId());
}
 
Example #2
Source File: SavepointDisposalHandlers.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey getOperationKey(HandlerRequest<EmptyRequestBody, SavepointDisposalStatusMessageParameters> request) {
	final TriggerId triggerId = request.getPathParameter(TriggerIdPathParameter.class);
	return new OperationKey(triggerId);
}
 
Example #3
Source File: SavepointDisposalHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey createOperationKey(HandlerRequest<SavepointDisposalRequest, EmptyMessageParameters> request) {
	return new OperationKey(new TriggerId());
}
 
Example #4
Source File: SavepointDisposalHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey getOperationKey(HandlerRequest<EmptyRequestBody, SavepointDisposalStatusMessageParameters> request) {
	final TriggerId triggerId = request.getPathParameter(TriggerIdPathParameter.class);
	return new OperationKey(triggerId);
}
 
Example #5
Source File: ClusterDataSetDeleteHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey createOperationKey(HandlerRequest<EmptyRequestBody, ClusterDataSetDeleteTriggerMessageParameters> request) {
	return new OperationKey(new TriggerId());
}
 
Example #6
Source File: ClusterDataSetDeleteHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey getOperationKey(HandlerRequest<EmptyRequestBody, ClusterDataSetDeleteStatusMessageParameters> request) {
	final TriggerId triggerId = request.getPathParameter(TriggerIdPathParameter.class);
	return new OperationKey(triggerId);
}
 
Example #7
Source File: SavepointDisposalHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey createOperationKey(HandlerRequest<SavepointDisposalRequest, EmptyMessageParameters> request) {
	return new OperationKey(new TriggerId());
}
 
Example #8
Source File: SavepointDisposalHandlers.java    From flink with Apache License 2.0 4 votes vote down vote up
@Override
protected OperationKey getOperationKey(HandlerRequest<EmptyRequestBody, SavepointDisposalStatusMessageParameters> request) {
	final TriggerId triggerId = request.getPathParameter(TriggerIdPathParameter.class);
	return new OperationKey(triggerId);
}