Codota Logo
IgniteInternalCache.invokeAllAsync
Code IndexAdd Codota to your IDE (free)

How to use
invokeAllAsync
method
in
org.apache.ignite.internal.processors.cache.IgniteInternalCache

Best Java code snippets using org.apache.ignite.internal.processors.cache.IgniteInternalCache.invokeAllAsync (Showing top 18 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public IgniteInternalFuture<Map> invokeAllAsync(Map map, Object... args) {
  return delegate.get().invokeAllAsync(map, args);
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public IgniteInternalFuture<Map> invokeAllAsync(Set keys, EntryProcessor entryProcessor, Object... args) {
  return delegate.get().invokeAllAsync((Set<?>)transform(keys), entryProcessor, args);
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(Set<? extends K> keys,
  CacheEntryProcessor<K, V, T> entryProcessor, Object... args) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  return createFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor, Object... args) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  return createFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map, Object... args) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  return createFuture(delegate.invokeAllAsync(map, args));
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> IgniteInternalFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map,
  Object... args) {
  CacheOperationContext prev = gate.enter(opCtx);
  try {
    return delegate.invokeAllAsync(map, args);
  }
  finally {
    gate.leave(prev);
  }
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> IgniteInternalFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor,
  Object... args) {
  CacheOperationContext prev = gate.enter(opCtx);
  try {
    return delegate.invokeAllAsync(keys, entryProcessor, args);
  }
  finally {
    gate.leave(prev);
  }
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map,
  Object... args) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(map, args));
      return null;
    }
    else
      return delegate.invokeAll(map, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor,
  Object... args
) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
      return null;
    }
    else
      return delegate.invokeAll(keys, entryProcessor, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
origin: apache/ignite

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(
  Set<? extends K> keys,
  CacheEntryProcessor<K, V, T> entryProcessor,
  Object... args
) {
  IgniteInternalCache<K, V> delegate = getDelegateSafe();
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
      return null;
    }
    else
      return delegate.invokeAll(keys, entryProcessor, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(Set<? extends K> keys,
  CacheEntryProcessor<K, V, T> entryProcessor, Object... args) {
  return createFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map, Object... args) {
  return createFuture(delegate.invokeAllAsync(map, args));
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> IgniteFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor, Object... args) {
  return createFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> IgniteInternalFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map,
  Object... args) {
  CacheOperationContext prev = gate.enter(opCtx);
  try {
    return delegate.invokeAllAsync(map, args);
  }
  finally {
    gate.leave(prev);
  }
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> IgniteInternalFuture<Map<K, EntryProcessorResult<T>>> invokeAllAsync(
  Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor,
  Object... args) {
  CacheOperationContext prev = gate.enter(opCtx);
  try {
    return delegate.invokeAllAsync(keys, entryProcessor, args);
  }
  finally {
    gate.leave(prev);
  }
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(Set<? extends K> keys,
  CacheEntryProcessor<K, V, T> entryProcessor,
  Object... args) {
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
      return null;
    }
    else
      return delegate.invokeAll(keys, entryProcessor, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(Set<? extends K> keys,
  EntryProcessor<K, V, T> entryProcessor,
  Object... args) {
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(keys, entryProcessor, args));
      return null;
    }
    else
      return delegate.invokeAll(keys, entryProcessor, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
origin: org.apache.ignite/ignite-core

/** {@inheritDoc} */
@Override public <T> Map<K, EntryProcessorResult<T>> invokeAll(
  Map<? extends K, ? extends EntryProcessor<K, V, T>> map,
  Object... args) {
  try {
    if (isAsync()) {
      setFuture(delegate.invokeAllAsync(map, args));
      return null;
    }
    else
      return delegate.invokeAll(map, args);
  }
  catch (IgniteCheckedException | IgniteException e) {
    throw cacheException(e);
  }
}
org.apache.ignite.internal.processors.cacheIgniteInternalCacheinvokeAllAsync

Popular methods of IgniteInternalCache

  • context
  • get
    Retrieves value mapped to the specified key from cache. Value will only be returned if its entry pas
  • affinity
    Gets affinity service to provide information about data partitioning and distribution.
  • configuration
    Gets configuration bean for this cache.
  • containsKey
  • getAndPut
    Stores given key-value pair in cache. If filters are provided, then entries will be stored in cache
  • getAndPutIfAbsent
    Stores given key-value pair in cache only if cache had no previous mapping for it. If cache previous
  • invoke
  • invokeAsync
  • put
    Stores given key-value pair in cache. If filters are provided, then entries will be stored in cache
  • size
  • cache
    Gets base cache for this projection.
  • size,
  • cache,
  • clear,
  • clearLocallyAll,
  • isEmpty,
  • isIgfsDataCache,
  • keySet,
  • localEntries,
  • localPeek,
  • lock

Popular in Java

  • Updating database using SQL prepared statement
  • setRequestProperty (URLConnection)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • onCreateOptionsMenu (Activity)
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • String (java.lang)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now