Package javax.media.control

Examples of javax.media.control.StreamWriterControl


      }

      // if the Processor implements StreamWriterControl, we can
      // call setStreamSizeLimit
      // to set a limit on the size of the file that is written.
      StreamWriterControl swc = (StreamWriterControl)
          p.getControl("javax.media.control.StreamWriterControl");
      //set limit to 5MB
      if (swc != null)
          swc.setStreamSizeLimit(5000000);
  
      // now start the filewriter and processor
      try {
          filewriter.start();
      } catch (IOException e) {
View Full Code Here

TOP

Related Classes of javax.media.control.StreamWriterControl

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.