blob: 0a327d406c7503d54bdbe5611f27acc0bb485aba [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.ignite.internal.processors.odbc.jdbc;
import org.apache.ignite.binary.BinaryObjectException;
import org.apache.ignite.internal.binary.BinaryReaderExImpl;
import org.apache.ignite.internal.binary.BinaryWriterExImpl;
import org.apache.ignite.internal.util.typedef.internal.S;
/**
* JDBC query fetch request.
*/
public class JdbcQueryFetchRequest extends JdbcRequest {
/** Cursor ID. */
private long cursorId;
/** Fetch size. */
private int pageSize;
/**
* Constructor.
*/
JdbcQueryFetchRequest() {
super(QRY_FETCH);
}
/**
* @param cursorId Cursor ID.
* @param pageSize Fetch size.
*/
public JdbcQueryFetchRequest(long cursorId, int pageSize) {
super(QRY_FETCH);
this.cursorId = cursorId;
this.pageSize = pageSize;
}
/**
* @return Cursor ID.
*/
public long cursorId() {
return cursorId;
}
/**
* @return Fetch page size.
*/
public int pageSize() {
return pageSize;
}
/** {@inheritDoc} */
@Override public void writeBinary(
BinaryWriterExImpl writer,
JdbcProtocolContext protoCtx
) throws BinaryObjectException {
super.writeBinary(writer, protoCtx);
writer.writeLong(cursorId);
writer.writeInt(pageSize);
}
/** {@inheritDoc} */
@Override public void readBinary(
BinaryReaderExImpl reader,
JdbcProtocolContext protoCtx
) throws BinaryObjectException {
super.readBinary(reader, protoCtx);
cursorId = reader.readLong();
pageSize = reader.readInt();
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(JdbcQueryFetchRequest.class, this);
}
}