/* * Copyright 2015 the original author or authors. * * Licensed 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 io.atomix.manager.resource.internal; import io.atomix.copycat.Command; import io.atomix.resource.Resource; /** * Instance-level resource command. * <p> * Instance commands are submitted by {@link Resource} instances to a specific state machine * in the Atomix cluster. The command {@link #resource()} identifies the state machine to which * the command is being submitted. * * @author <a href="http://github.com/kuujo">Jordan Halterman</a> */ public final class InstanceCommand<T extends Command<U>, U> extends InstanceOperation<T, U> implements Command<U> { public InstanceCommand() { } public InstanceCommand(long resource, T command) { super(resource, command); } @Override public CompactionMode compaction() { return operation.compaction(); } @Override public String toString() { return String.format("%s[resource=%d, command=%s]", getClass().getSimpleName(), resource, operation); } }