jmce - 1_02

Package jmce.util

Utilities packages.

See:
          Description

Interface Summary
TimerListener Interface for timer listener.
 

Class Summary
FastArray<E> A class like standard java.util.ArrayList but without implementation of list and synchronization for maximum performance.
FastLinkedList<T> Fast double linked list This class implements a generic double linked list very fast because the link removed from the list are inserted in one ring buffer and insertion of one new element normally do not require to create a new link if one already used is present in the ring buffer.
FastLinkedList.Node<T> Inner class to hold a link and the element.
Hex Class to format work with hex number.
Logger Extension to java.util.logging.Logger to provide method for create logger using the class object and not the class name.
RingBuffer<E>  
Stack<E> Generic stack implementation without synchronization for maximum performance.
StringUtil String utility class.
Timeout Timeout manager.
Timer Asyncronous timer.
TimerManager Timer manager for Timer.
 

Package jmce.util Description

Utilities packages.

This package provide one series of utility used by JMCE to manipulate data. Normally the class are also present in the standard JDK but the implementation is to slow. This package provide very fast implementation and no type of synchronization.

Version:
1.00

Package Specification

Related Documentation

Author:
Mario Viara

jmce - 1_02