Hi!
If there is a queue created already with the name "abc" it will just
return that queue, if it cannot find it and you have included a
configuration it will create it.
Mikael
Den 2019-11-14 kl. 13:30, skrev Narsi Reddy Nallamilli:
Hi Mikael,
Do you mean the 4th statement will not create new Queue? and would
point to ig
CollectionConfiguration colCfg =new CollectionConfiguration(); colCfg.setCollocated(true);
IgniteQueue<Object> ig =ignite.queue("abc",0,colCfg); IgniteQueue<Object> ig1
=ignite.queue("abc",0,colCfg);
On Thu, Nov 14, 2019 at 5:42 PM Mikael <[email protected]
<mailto:[email protected]>> wrote:
What is wrong with Ignite.queue() ?
|queue
<https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/Ignite.html#queue-java.lang.String-int-org.apache.ignite.configuration.CollectionConfiguration->(String
<http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true>
name,
int cap, CollectionConfiguration
<https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/configuration/CollectionConfiguration.html>
cfg)|
Will get a named queue from cache and create one if it has not
been created yet and |cfg| is not |null|.
Mikael
Den 2019-11-14 kl. 13:02, skrev Narsi Reddy Nallamilli:
Hi!
I am looking for some method just like getOrCreateCache available
for queue. Any help!