User Rastislav Komara - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:32:35Zhttp://stackoverflow.com/feeds/user/22068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1590923/java-6-and-swingutilities2/1599624#15996241Answer by Rastislav Komara for Java 6 and SwingUtilities2Rastislav Komara2009-10-21T09:11:37Z2009-10-21T09:11:37Z<p>The only correct way (out of hacking) is to ask vendor to fix and rebuild this component to Java 6. The possible working way is copy sun.swing.SU2 to com.sun...SU2 and package it into separate jar (e.g. java6fix.jar) and try to run your application. It will be fine if you add this patch jar into jvm bootclasspath. The best patch should be to create own com.sun..SU2 and delegate all calls to sun.swing.SU2. And take a look for different version of component which support Java6 maybe also from different vendor. Also if the problem is only in the mentioned line <code>((Boolean)c.getClientProperty(AA_TEXT_PROPERTY_KEY));</code> then you may put your own client property for this component to prevent NPE. When you take this path you can just simply create your own com.sun...SU2.AA_TEXT_PROPERTY_KEY and call c.setClientProperty(AA_TEXT_PROPERTY_KEY, true) on this component. Also try to disable anti aliasing check on component if possible. </p>
http://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1508237#15082370Answer by Rastislav Komara for Make header text bold when its column is selected in JTableRastislav Komara2009-10-02T08:01:06Z2009-10-02T08:01:06Z<p>Set custom renderer into table header. If current column is selected column set font to bold.</p>
<pre><code>JTable table = new JTable()
table.getTableHeader().setDefaultRenderer(new MyRenderer());
class MyRenderer implements TableCellRenderer {
//todo implement
}
</code></pre>
http://stackoverflow.com/questions/1418618/javafx-url-proxy/1419962#14199622Answer by Rastislav Komara for JavaFX url-proxy?Rastislav Komara2009-09-14T06:27:30Z2009-09-14T06:27:30Z<p><a href="http://forums.sun.com/thread.jspa?threadID=5404464" rel="nofollow">Setting proxy in Java/FX</a></p>
http://stackoverflow.com/questions/1346723/javafx-or-ria-desktop-app-on-dvd-also-available-on-the-web/1371752#13717520Answer by Rastislav Komara for JavaFX or RIA desktop app (on dvd) also available on the web?Rastislav Komara2009-09-03T06:47:17Z2009-09-03T06:47:17Z<p>Yes, it is possible. If you use JavaFX you will be allowed use multiple deployments. For example, NetBeans 6.7.1 with JavaFX creates several possible deployments from one project. Then you can publish this application on web, DVD, etc. You will need to slightly customize standalone deployment for DVD to be able e.g. start it as autorun if necessary. JavaFX is good choice. </p>
http://stackoverflow.com/questions/1349220/convert-jpanel-to-image/1350665#13506650Answer by Rastislav Komara for Convert JPanel to imageRastislav Komara2009-08-29T06:31:21Z2009-08-29T06:31:21Z<p>Take a look at BasicTableUI. The cell renderer is drawn on image without showing and then drawn on visible table component.</p>
http://stackoverflow.com/questions/1336418/javafx-scrollbar/1346364#13463641Answer by Rastislav Komara for javafx scrollbarRastislav Komara2009-08-28T11:14:00Z2009-08-28T11:14:00Z<p>You can try to bind <code>value</code> of scrollbar to translateX (or Y) of image. And of course set min and max of scrollbar to 0, image.width (.height)</p>
http://stackoverflow.com/questions/1318645/javafx-or-swing/1318817#13188170Answer by Rastislav Komara for JavaFX or Swing?Rastislav Komara2009-08-23T15:32:59Z2009-08-23T15:32:59Z<p>there is several issues with JavaFX which Swing already solved. Also, it is really young technology making baby-steps. I suggest to consider all aspects. Both has pros and cons. Swing has a lot of resources. JavaFX is simpler in dealing with RIA kind of interfaces. So try both, and decide based on gained experience. But the JavaFX is worth of your time.</p>
http://stackoverflow.com/questions/1281582/how-to-find-out-the-instance-when-component-resize-is-complete/1283765#12837650Answer by Rastislav Komara for How to find out the instance when component resize is complete Rastislav Komara2009-08-16T08:21:43Z2009-08-16T08:21:43Z<p>This is not possible. But you can use <a href="http://stackoverflow.com/questions/143341/are-there-any-frameworks-for-handling-database-requests-in-swing-applications/143689#143689">SingleWorkerThread</a> to minimalize the number of events processed.</p>
http://stackoverflow.com/questions/1281956/detecting-drops-from-the-same-process/1283743#12837430Answer by Rastislav Komara for Detecting drops from the same processRastislav Komara2009-08-16T08:08:51Z2009-08-16T08:08:51Z<p>In general no. Marker DataFlavor is possible. In general, in DnD there is no need to know if I'm in or out. If I can convert data into way I can handle, then it is OK. Else I'm not interested. </p>
http://stackoverflow.com/questions/1282865/java-swing-jlist-with-listcellrenderer-selected-item-different-height/1283740#12837402Answer by Rastislav Komara for Java Swing: JList with ListCellRenderer selected item different heightRastislav Komara2009-08-16T08:04:26Z2009-08-16T08:04:26Z<p>The JList has no ability to change size of cell depending on selection or whatever. The list use "cached" sizes. If there is new cellRenderer provided this sizes are recounted and applied within all cells in list. I think the reason is performance for list with a lot of entries. The possible solution is to write own ListUI implementation which is able to use different sizes for selected and unselected cells. This brings also possibility to adjust size of cells around selection by logarithm or other interpolation. I hope you have a big reason why to do this. It is a lot of work!</p>
http://stackoverflow.com/questions/1263323/tristate-checkboxes-in-java/1265161#12651610Answer by Rastislav Komara for Tristate Checkboxes in JavaRastislav Komara2009-08-12T09:28:58Z2009-08-12T09:28:58Z<p>Change the UI. Tristate check-box is unusual and can really confuse users. The drop down is good option but for more then one occurrence within dialog it will also bring a lot of confusion to user.</p>
http://stackoverflow.com/questions/1193393/javafx-eclipse-rcp-good-idea-bad-idea-other-ideas/1198872#11988720Answer by Rastislav Komara for [JavaFx//Eclipse RCP] Good idea / Bad idea (/other ideas ?)Rastislav Komara2009-07-29T08:54:20Z2009-07-29T08:54:20Z<p>The answer is simple. No, you can't use JavaFX yet. The problem is that JFX script can't be embedded into Swing nor Eclipse SWT. We already know about such an issues. (The is some kind of hack how to embed JFX into Swing APP only.) </p>
http://stackoverflow.com/questions/1072383/how-to-implement-list-set-and-map-in-null-free-design/1073481#10734810Answer by Rastislav Komara for How to implement List, Set, and Map in null free design?Rastislav Komara2009-07-02T09:46:04Z2009-07-02T09:46:04Z<p>Conceptually it is a big problem. One of useful scenarios is to create adapter which delegates all calls into underlying map object. For this adapter there will be required parameter which specify <code>null</code> object. E.g:</p>
<pre><code>class MapAdapter<K,V> implements Map<K,V> {
private Map<K,V> inner = new HashMap<K,V>();
private final V nullObject;
private MapAdapter(V nullObject) {
this.nullObject = nullObject;
}
public static <K,V> Map<K,V> adapt(Map<K,V> mapToAdapt, V nullObject) {
MapAdapter<K,V> adapter = new MapAdapter<K,V>(nullObject);
adapter.inner.addAll(mapToAdapt);
return adapter;
}
//Here comes implementation of methods delegating to inner.
public V get(K key) {
if (inner.containsKey(key)) {
return inner.get(key);
}
return nullObject;
}
}
</code></pre>
<p>A lot of work, but it allows generic NullSafe implementation.</p>
http://stackoverflow.com/questions/1063528/paintcomponent-takes-a-long-time-ties-up-the-swing-event-dispatch-thread/1064114#10641141Answer by Rastislav Komara for PaintComponent Takes a Long Time, Ties up the Swing Event Dispatch ThreadRastislav Komara2009-06-30T14:53:15Z2009-06-30T14:53:15Z<p>Use background image which is updated by special working thread. Then in JPanel's paintComponent() method just paint this image. The strategy is called double-buffering. You have background and foreground image. If separate thread finish the painting of data then set this image as foreground and foreground load as background. Invalidate JPanel and continue painting on back image if necessary. </p>
http://stackoverflow.com/questions/1045503/java-jcombobox-custom-renderer-and-gtk/1052360#10523600Answer by Rastislav Komara for Java JComboBox Custom Renderer and GTKRastislav Komara2009-06-27T08:07:46Z2009-06-27T08:07:46Z<p>The <code>DefaultListCellRenderer</code> extends JLabel and looks like JLabel. If you have non-editable ComboBox then Renderer returned via getRenderer is used for painting drop down list area and also for "input" area. Try to play with border/foreground/background settings for ComboBox and renderer.</p>
http://stackoverflow.com/questions/1037212/how-to-drag-from-browser-area-and-deposit-to-the-explorer-area/1037438#10374381Answer by Rastislav Komara for How to drag from browser area and deposit to the explorer area?Rastislav Komara2009-06-24T09:59:23Z2009-06-24T09:59:23Z<p>According to your justification is is not simple, but it can be managed. There is class called DataFlavor. You had to use D&D mechanism introduce in java using Transferable objects and provide correct mime-types and corresponding conversion. The problem is which mime-type will be accepted by explorer. I hope this help. </p>
http://stackoverflow.com/questions/1031795/swing-what-is-a-good-way-to-implement-fully-scalable-components/1032147#10321470Answer by Rastislav Komara for Swing: What is a good way to implement fully-scalable components?Rastislav Komara2009-06-23T12:05:46Z2009-06-23T12:05:46Z<p>If I look at this problem as visual UML editor then I had to think about single "canvas" component drawing each element as graphical object with base aspect ration and zooming in/out. I can't see reason for list of components aligned within parent container.</p>
http://stackoverflow.com/questions/1000219/java-heap-space-cms-with-huge-files/1000828#10008281Answer by Rastislav Komara for Java Heap Space (CMS with huge files)Rastislav Komara2009-06-16T11:13:52Z2009-06-16T11:13:52Z<p>Are you required to serve files using Tomcat? For this kind of tasks we have used separate download mechanism. We chained Apache -> Tomcat -> storage and then add rewrite rules for download. Then you just by-pass Tomcat and Apache will serve the file to client (Apache->storage). But if works only if you have files stored as files. If you read from DB or other type of non-file storage this solution cannot be used successfully. the overall scenario is that you generate download links for files as e.g. domain/binaries/xyz... and write redirect rule for domain/files using Apache mod_rewrite.</p>
http://stackoverflow.com/questions/999932/how-to-do-smooth-scrolling-for-lists-in-swing/1000545#10005451Answer by Rastislav Komara for How to do smooth scrolling for lists in SwingRastislav Komara2009-06-16T09:58:37Z2009-06-16T09:58:37Z<p>If you are using <code>JList</code> try overwrite <code>getScrollableUnitIncrement(Rectangle, int, int) </code> and <code>getScrollableBlockIncrement(Rectangle, int, int) </code> to return custom increment .. e.g. 2 pixels instead of default values computed from list entry height.</p>
http://stackoverflow.com/questions/968619/java-swing-design-pattern-for-complex-class-interaction/970431#9704310Answer by Rastislav Komara for Java Swing design pattern for complex class interactionRastislav Komara2009-06-09T14:37:23Z2009-06-09T14:37:23Z<p>Well, I will change the world you are working with. You have 3 classes and each of them is just observer of the chat-world. The <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">MVC</a> is the way how to deal with your problem. You had to create Model for your world, in this case chat program. This model will store data, chat queue, friend list and keep eye on consistency and notify everybody interested about changes. Also, there will be several observers which are interested in state of world and are reflecting its state to user and server. The GUI is bringing visualization to friends-list and message queue and reacts on their changes. The Scheduler is looking about changes in scheduled tasks and update model with their results. The ChatManager will be better doing its job in several classes like SessionManager, MessageDispatcher, MessageAcceptor etc. You have 3 classes with empty center. Create center and connect them together using this center and <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">Observer Pattern</a>. Then each class will deal only with one class and only with interesting events. One GUI class is bad idea. Divide to more subclasses representing logical group (view of model). This is the way how to conquer your UI.</p>
http://stackoverflow.com/questions/915810/is-xml-or-xul-the-future-of-java-gui-building/916178#9161780Answer by Rastislav Komara for Is XML or XUL the future of Java GUI building?Rastislav Komara2009-05-27T14:49:53Z2009-05-27T14:49:53Z<p>I do all my swing stuff by hand and none of my application is nasty. If you do not know how to create usable and good looking UI there is no technology to help you.</p>
http://stackoverflow.com/questions/902031/how-to-implement-multilanguage-in-java-swing-applications/903554#9035541Answer by Rastislav Komara for How to implement multilanguage in Java/Swing applications?Rastislav Komara2009-05-24T11:13:19Z2009-05-24T11:13:19Z<p>Well, you had to use <code>ResourceBundle</code>s. But if you are setting the componet text property use instead of human readable text the text for <code>RB.getString()</code>. Then if the Matisse regenerates form the bundle key will stay and localization will work. Example:</p>
<p>I will use this image from Matisse pages:<br />
<img src="http://www.myeclipseide.com/documentation/quickstarts/m4m%5Foverview/images/properties%5Fview1.gif" alt="Illustration" />.</p>
<p>there you can see the the property <strong>text</strong>. There is value "My New Label". Instead of this you can use <code>rb.getString("myNewLabel.my.message")</code> where <code>rb</code> is <code>ResourceBundle</code>. The only problem should be too intelligent properties editor going against you. I never work with any wysiwyg editor (personal preference, I do always UI design by hand).</p>
http://stackoverflow.com/questions/875897/hibernate-swing/886936#8869360Answer by Rastislav Komara for Hibernate + SwingRastislav Komara2009-05-20T09:00:56Z2009-05-20T09:00:56Z<p>I prefer session per model update. It helps avoid long-lasting sessions and also it helps minimize total number of session creations.</p>
http://stackoverflow.com/questions/699996/java-web-application-how-to-implement-caching-techniques/700318#7003181Answer by Rastislav Komara for Java Web Application: How to implement caching techniques?Rastislav Komara2009-03-31T06:46:03Z2009-03-31T08:36:13Z<p>Your question contains several separate questions together. Let's start slowly. ServletContext is good place where you can store handle to your cache. But you pay by having cache per server instance. It should be no problem. If you want to register cache in wider range consider registering it into JNDI.</p>
<p>The problem with caching. Basically, you are retrieving xml via webservice. If you are accesing this webservice via HTTP you can install simple HTTP proxy server on your side which handle caching of xml. The next step will be caching of resolved xml in some sort of local object cache. This cache can exists per server without any problem. In this second case the EHCache will do perfect job. In this case the chain of processing will be like this <code>Client - http request -> servlet -> look into local cache - if not cached -> look into http proxy (xml files) -> do proxy job (http to webservice)</code>. </p>
<p>Pros:</p>
<ul>
<li>Local cache per server instance, which contains only objects from requested xmls</li>
<li>One http proxy running on same hardware as our webapp.</li>
<li>Possibility to scale webapp without adding new http proxies for xml files.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Next level of infrastructure</li>
<li>+1 point of failure (http proxy)</li>
<li>More complicated deployment</li>
</ul>
<p>Update: don't forget to always send HTTP HEAD request into proxy to ensure that cache is up to date.</p>
http://stackoverflow.com/questions/627579/running-a-javafx-program-within-a-web-page-not-launching-a-new-window/629381#6293810Answer by Rastislav Komara for Running a JavaFX program within a web page, not launching a new windowRastislav Komara2009-03-10T09:08:14Z2009-03-10T09:08:14Z<p>Yep, just use run application as Java Applet. NetBeans will deploy all FX stuff correctly for all platforms including Java Applet.</p>
http://stackoverflow.com/questions/515819/override-default-behavior-of-tab-in-jtextpane/527373#5273731Answer by Rastislav Komara for Override default behavior of TAB in JTextPaneRastislav Komara2009-02-09T07:52:16Z2009-02-09T07:52:16Z<p>The other way is to redefine action for JTextArea component associated with TAB key. Take look at ActionMap.</p>
http://stackoverflow.com/questions/518471/jslider-question-position-after-leftclick/527372#5273720Answer by Rastislav Komara for JSlider question: Position after leftclickRastislav Komara2009-02-09T07:49:25Z2009-02-09T07:49:25Z<p>This behavior is derived from OS. Are you sure you want to redefine it and confuse users? I don't think so. ;)</p>
http://stackoverflow.com/questions/499433/build-javafx-project-without-netbeans/502460#5024603Answer by Rastislav Komara for Build JavaFX project without NetBeansRastislav Komara2009-02-02T07:39:33Z2009-02-02T07:39:33Z<p>If you create new project in NB there is folder called nbproject. This folder contains <code>build-impl.xml</code>. This file contains this target:</p>
<pre><code><target if="src.dir" name="-compile-fx">
<taskdef classname="com.sun.tools.javafx.ant.JavaFxAntTask" classpath="${platform.bootcp}" name="javafxc"/>
<javafxc bootclasspath="${platform.bootcp}" classpath="${build.classes.dir}:${javac.classpath}" compilerclasspath="${platform.bootcp}" debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${build.classes.dir}" excludes="${excludes}" fork="yes" includeJavaRuntime="false" includeantruntime="false" includes="**/*.fx" source="${javac.source}" sourcepath="" srcdir="${src.dir}" target="${javac.target}">
<compilerarg line="${javac.compilerargs}"/>
</javafxc>
</target>
</code></pre>
<p>This is good start to create ant for Eclipse. I'm not sure how building works for Eclipse, but there could be limitations. The <code>com.sun.tools.javafx.ant.JavaFxAntTask</code> is located in SDK, not in compiler jar. Good luck!.</p>
http://stackoverflow.com/questions/416004/can-i-place-lot-of-cpu-and-io-intensive-code-in-shutdown-hook/416062#4160622Answer by Rastislav Komara for Can I place lot of CPU and IO intensive code in ShutDown HookRastislav Komara2009-01-06T10:41:58Z2009-01-06T10:41:58Z<p>Simply No. <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html#addShutdownHook(java.lang.Thread)" rel="nofollow">Read carefully API</a> and you will see. There is limited time to shutdown. If you extend over this time slot the JVM will simply end/terminate without notification. If you are writing data, you will write down corrupted data. </p>
http://stackoverflow.com/questions/393948/object-persistence-strategy-for-desktop-application/394134#3941342Answer by Rastislav Komara for Object persistence strategy for desktop applicationRastislav Komara2008-12-26T19:05:13Z2008-12-26T19:05:13Z<p>Your question has two parts. 1st: How to persist data? 2nd: How to protect them?</p>
<p>There is a lot of ways how to persist data. From simple XML, java serialization to own data format. There is no way how to prevent revers engineering data just by "plain text". You can just make it harder, but not impossible. To make it quite impossible you need to use strong encryption and here comes a problem. How to encrypt data and don't reveal secure token. If you are distributing secure token with your application it is just a matter of time to find it and problem is solved. So entering a secure token during installation is not an option. If user has to authenticate to use application it should help, but it is the same problem. The next option is to use custom protected bijection algorithm to obfuscate data. And the last option is to do nothing just keep the data format private and don't publish them and obfuscate your application to prevent from reverse engineering. </p>
<p>At the best value comes simple obfuscation of data (XOR primenumber) with custom data format and obfuscated application.</p>
http://stackoverflow.com/questions/1590923/java-6-and-swingutilities2/1599624#1599624Comment by Rastislav Komara on Java 6 and SwingUtilities2Rastislav Komara2009-10-21T20:01:03Z2009-10-21T20:01:03ZIf not, take another path from my suggestions.http://stackoverflow.com/questions/1565712/java-mac-os-x-running-with-out-a-dock-iconComment by Rastislav Komara on Java Mac OS X running with out a Dock IconRastislav Komara2009-10-15T10:03:14Z2009-10-15T10:03:14Z:-)))))))))))))))))http://stackoverflow.com/questions/1517210/how-to-get-the-added-removed-or-changed-chars-from-documentlistener/1517242#1517242Comment by Rastislav Komara on How to get the added, removed or changed chars from DocumentListener?Rastislav Komara2009-10-05T09:24:14Z2009-10-05T09:24:14ZDF.replace() with empty string is called if I remember correctlyhttp://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1508237#1508237Comment by Rastislav Komara on Make header text bold when its column is selected in JTableRastislav Komara2009-10-03T08:41:41Z2009-10-03T08:41:41ZTable header uses sun.swing.table.DefaultTableCellHeaderRenderer to render each column in header row. Unfortunately sun.** is private SUN package. You will need to make more painting as usual to meet LaF.http://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1490090#1490090Comment by Rastislav Komara on Make header text bold when its column is selected in JTableRastislav Komara2009-10-02T07:58:15Z2009-10-02T07:58:15ZThis isn't correct solution. You are mixing Model and UI together.http://stackoverflow.com/questions/1425618/when-i-execute-get-ldapconnection-thorugh-swing-it-hangs/1425901#1425901Comment by Rastislav Komara on when i execute get LDAPConnection thorugh Swing it hangs!!!Rastislav Komara2009-09-15T09:26:35Z2009-09-15T09:26:35ZRajes, where is the other thread spawned? If I understand correctly, this is Matis generated code. And the jButton1MouseClicked are called from AWT.http://stackoverflow.com/questions/1336628/how-to-mix-java-swing-and-java-fx-in-swing-application/1341177#1341177Comment by Rastislav Komara on How to mix java swing and java fx in swing application?Rastislav Komara2009-08-28T11:11:04Z2009-08-28T11:11:04ZI think so. For now the best way how to do this is just wait.http://stackoverflow.com/questions/1336628/how-to-mix-java-swing-and-java-fx-in-swing-application/1336657#1336657Comment by Rastislav Komara on How to mix java swing and java fx in swing application?Rastislav Komara2009-08-27T06:51:18Z2009-08-27T06:51:18ZFYI: It is completely unsupported, uses private APIs, and almost certainly will break in the next version.http://stackoverflow.com/questions/1282865/java-swing-jlist-with-listcellrenderer-selected-item-different-height/1283661#1283661Comment by Rastislav Komara on Java Swing: JList with ListCellRenderer selected item different heightRastislav Komara2009-08-16T07:59:45Z2009-08-16T07:59:45ZThis won't help..http://stackoverflow.com/questions/1200242/javafx-awt-bridges-hello-worldComment by Rastislav Komara on [JavaFX] AWT bridge's "Hello World"Rastislav Komara2009-07-30T09:35:00Z2009-07-30T09:35:00ZYou heard it from me. And of course it is fuzzy and not guaranteed to fork for a lifetime. Maybe you should try different approach.http://stackoverflow.com/questions/1120088/what-is-javas-xxusemembar-parameterComment by Rastislav Komara on What is Java's -XX:+UseMembar parameterRastislav Komara2009-07-14T10:29:34Z2009-07-14T10:29:34ZBTW:-XX options are not officially supported and can be removed from future releases without notification.http://stackoverflow.com/questions/1072511/where-to-look-to-get-started-with-making-an-animated-clock-with-swing-in-javaComment by Rastislav Komara on Where to look to get started with making an animated clock with Swing in Java?Rastislav Komara2009-07-02T09:36:43Z2009-07-02T09:36:43ZDid you consider using JavaFX? www.javafx.comhttp://stackoverflow.com/questions/1031795/swing-what-is-a-good-way-to-implement-fully-scalable-components/1032147#1032147Comment by Rastislav Komara on Swing: What is a good way to implement fully-scalable components?Rastislav Komara2009-06-24T09:38:46Z2009-06-24T09:38:46ZWe do not understand each other. I was just pointing to your justification for visual UML editor. http://stackoverflow.com/questions/1011580/jcombobox-getselecteditem-not-changingComment by Rastislav Komara on JComboBox getSelectedItem() not changingRastislav Komara2009-06-18T11:35:48Z2009-06-18T11:35:48ZPlease, can you specify the way you are selecting JCB value? How your model looks like?http://stackoverflow.com/questions/976940/which-java-blocking-queue-is-most-efficient-for-single-producer-single-consumer-sComment by Rastislav Komara on Which Java blocking queue is most efficient for single-producer single-consumer scenariosRastislav Komara2009-06-12T12:34:32Z2009-06-12T12:34:32ZDid you considered buying Real-Time JVM? It has special extensions helping to achieve such critical time frames. <a href="http://java.sun.com/javase/technologies/realtime/index.jsp" rel="nofollow">java.sun.com/javase/technologies/…</a>