Package javax.media

Examples of javax.media.PrefetchCompleteEvent


     * Post a PrefetchCompleteEvent to the Media Event Queue.
     * Automatically fill in the Previous State, Current State,
     * and Target State properties of the PrefetchCompleteEvent.
     */
    protected void postPrefetchCompleteEvent() {
        postEvent( new PrefetchCompleteEvent(
            this, previousState, currentState, targetState) );
    }
View Full Code Here


    {
        if (state == Unrealized)
            realize();
       
        sendControllerEvent(new TransitionEvent(this, Realized, Prefetching, Prefetched));
        sendControllerEvent(new PrefetchCompleteEvent(this, Prefetching, Prefetched, Prefetched));
    }
View Full Code Here

TOP

Related Classes of javax.media.PrefetchCompleteEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.