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

org.refcodes.io.ByteArrayReceiverImpl Maven / Gradle / Ivy

Go to download

Artifact with commonly used I/O functionality and for connection related issues such as receiving or transmitting data in a unified way.

There is a newer version: 3.3.9
Show newest version
package org.refcodes.io;

import java.util.List;

import org.apache.commons.lang.ArrayUtils;
import org.refcodes.component.OpenException;

/**
 * The Class ByteArrayReceiverImpl.
 */
public class ByteArrayReceiverImpl extends AbstractByteReceiver implements ByteArrayReceiver {

	// /////////////////////////////////////////////////////////////////////////
	// STATICS:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// CONSTANTS:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// VARIABLES:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// CONSTRUCTORS:
	// /////////////////////////////////////////////////////////////////////////

	/**
	 * Instantiates a new byte array receiver impl.
	 *
	 * @param aDatagrams the datagrams
	 */
	public ByteArrayReceiverImpl( byte[] aDatagrams ) {
		super( aDatagrams.length );
		try {
			open();
			pushDatagrams( aDatagrams );
		}
		catch ( OpenException ignore ) {}
	}

	/**
	 * Instantiates a new byte array receiver impl.
	 *
	 * @param aDatagrams the datagrams
	 */
	public ByteArrayReceiverImpl( List aDatagrams ) {
		this( ArrayUtils.toPrimitive( aDatagrams.toArray( new Byte[aDatagrams.size()] ) ) );
	}

	// /////////////////////////////////////////////////////////////////////////
	// INJECTION:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// METHODS:
	// /////////////////////////////////////////////////////////////////////////

	/**
	 * {@inheritDoc}
	 */
	@Override
	public byte[] getBytes() {
		return ArrayUtils.toPrimitive( _datagramQueue.toArray( new Byte[_datagramQueue.size()] ) );
	}

	// /////////////////////////////////////////////////////////////////////////
	// HOOKS:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// HELPER:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// INNER CLASSES:
	// /////////////////////////////////////////////////////////////////////////

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy