001package org.anarres.qemu.qapi.api; 002 003import com.fasterxml.jackson.annotation.JsonInclude; 004import com.fasterxml.jackson.annotation.JsonProperty; 005import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 006import javax.annotation.CheckForNull; 007import javax.annotation.Nonnull; 008import org.anarres.qemu.qapi.common.*; 009 010/** 011 * Autogenerated class. 012 * 013 * <pre>QApiCommandDescriptor{name=query-iothreads, returns=[IOThreadInfo], data=null}</pre> 014 */ 015// QApiCommandDescriptor{name=query-iothreads, returns=[IOThreadInfo], data=null} 016public class QueryIothreadsCommand extends QApiCommand<java.lang.Void, QueryIothreadsCommand.Response> { 017 018 /** Response to a QueryIothreadsCommand. */ 019 public static class Response extends QApiResponse<java.util.List<IOThreadInfo>> { 020 } 021 022 /** Constructs a new QueryIothreadsCommand. */ 023 public QueryIothreadsCommand() { 024 super("query-iothreads", Response.class, null); 025 } 026 027}