All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elassandra.action.admin.indices.cleanup.CleanupRequest Maven / Gradle / Ivy

There is a newer version: 6.2.3.31
Show newest version
/*
 * Copyright (c) 2017 Strapdata (http://www.strapdata.com)
 * Contains some code from Elasticsearch (http://www.elastic.co)
 * 
 * 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 org.elassandra.action.admin.indices.cleanup;

import java.io.IOException;

import org.elasticsearch.action.ActionRequest;
import org.elasticsearch.action.support.broadcast.BroadcastRequest;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;

/**
 * Cleanup on all nodes from the underlying Cassandra tables.
 *
 * @see org.elasticsearch.client.Requests#cleanupRequest(String...)
 * @see org.elasticsearch.client.IndicesAdminClient#cleanup(CleanupRequest, ActionListener)
 * @see CleanupResponse
 */
public class CleanupRequest extends BroadcastRequest {

    int jobs = 0;
    
    public CleanupRequest() {
    }

    public CleanupRequest(String... indices) {
        super(indices);
    }
    
    public int jobs() {
        return jobs;
    }

    public void jobs(int jobs) {
        this.jobs = jobs;
    }

    @Override
    public void writeTo(StreamOutput out) throws IOException {
        super.writeTo(out);
        out.writeInt(jobs);
    }

    @Override
    public void readFrom(StreamInput in) throws IOException {
        super.readFrom(in);
        jobs = in.readInt();
    }

    @Override
    public String toString() {
        return "CleanupRequest{" +
                "jobs=" + jobs + "}";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy