Blocking call. Retries till it can successfully publish the obj. Can be interrupted via Thread.interrupt().
(Object obj)
| 176 | * Blocking call. Retries till it can successfully publish the obj. Can be interrupted via Thread.interrupt(). |
| 177 | */ |
| 178 | public void publish(Object obj) throws InterruptedException { |
| 179 | Inserter inserter = getInserter(); |
| 180 | inserter.publish(obj); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Non-blocking call, returns false if full. |