blob: 01772b7ef7771f3fb57a73e6ae0d0c3843bb4f43 [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.util.io;
import java.io.DataOutput;
import java.io.IOException;
import java.io.OutputStream;
/**
* Extended data output.
*/
public interface GridDataOutput extends DataOutput {
/**
* @param out Underlying stream.
*/
public void outputStream(OutputStream out);
/**
* @return Copy of internal array shrunk to offset.
*/
public byte[] array();
/**
* @return Internal array.
*/
public byte[] internalArray();
/**
* @return Offset.
*/
public int offset();
/**
* @param off Offset.
*/
public void offset(int off);
/**
* Resets data output.
*/
public void reset();
/**
* Writes array of {@code byte}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeByteArray(byte[] arr) throws IOException;
/**
* Writes array of {@code short}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeShortArray(short[] arr) throws IOException;
/**
* Writes array of {@code int}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeIntArray(int[] arr) throws IOException;
/**
* Writes array of {@code long}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeLongArray(long[] arr) throws IOException;
/**
* Writes array of {@code float}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeFloatArray(float[] arr) throws IOException;
/**
* Writes array of {@code double}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeDoubleArray(double[] arr) throws IOException;
/**
* Writes array of {@code boolean}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeBooleanArray(boolean[] arr) throws IOException;
/**
* Writes array of {@code char}s.
*
* @param arr Array.
* @throws IOException In case of error.
*/
public void writeCharArray(char[] arr) throws IOException;
}