Tabnine Logo
OnArrived
Code IndexAdd Tabnine to your IDE (free)

How to use
OnArrived
in
com.oracle.coherence.common.liveobjects

Best Java code snippets using com.oracle.coherence.common.liveobjects.OnArrived (Showing top 6 results out of 315)

origin: com.oracle.coherence.incubator/coherence-messagingpattern

/**
 * When an Entry is inserted, updated, or arrives via a partition transfer need to ensure that the MBean
 * for this {@link Topic} is properly visible.
 *
 * @param entry The {@link BinaryEntry} provided by the LiveObjectInterceptor
 */
@OnInserted
@OnUpdated
@OnArrived
@OnRestored
public void onChanged(BinaryEntry entry)
{
  if (logger.isLoggable(Level.FINER))
  {
    logger.log(Level.FINER, "Topic:onChanged identifier:{0}", getIdentifier());
  }
  MessagingMBeanManager MBeanManager = MessagingMBeanManager.getInstance();
  MBeanManager.registerMBean(this, TopicProxy.class, MBeanManager.buildTopicMBeanName(getIdentifier()));
}
origin: com.oracle.coherence.incubator/coherence-eventdistributionpattern

@OnInserted
@OnArrived
@OnRestored
public void onEntryInserted(BinaryEntry entry)
origin: com.oracle.coherence.incubator/coherence-messagingpattern

/**
 * When an Entry is inserted, updated, or arrives via a partition transfer need to ensure that the MBean
 * and lease for this @{TopicSubscription} is properly visible.
 *
 * @param entry The {@link BinaryEntry} provided by the LiveObjectInterceptor
 */
@OnInserted
@OnUpdated
@OnArrived
@OnRestored
public void onChanged(BinaryEntry entry)
{
  if (logger.isLoggable(Level.FINER))
  {
    logger.log(Level.FINER, "TopicSubscription:onChanged identifier:{0}", getIdentifier());
  }
  // Handle lease processing
  registerLease();
  MessagingMBeanManager MBeanManager = MessagingMBeanManager.getInstance();
  MBeanManager.registerMBean(this,
                SubscriptionProxy.class,
                MBeanManager.buildTopicSubscriptionMBeanName(getIdentifier()));
}
origin: com.oracle.coherence.incubator/coherence-messagingpattern

/**
 * When an Entry is inserted, updated, or arrived via a partition transfer need to ensure that the
 * MBean and lease for this {@link QueueSubscription} is properly visible.
 *
 * @param entry The {@link BinaryEntry} provided by the LiveObjectInterceptor
 */
@OnInserted
@OnUpdated
@OnArrived
@OnRestored
public void onChanged(BinaryEntry entry)
{
  if (logger.isLoggable(Level.FINER))
  {
    logger.log(Level.FINER, "QueueSubscription:onChanged identifier:{0}", getIdentifier());
  }
  // Handle lease processing
  registerLease();
  // Register the subscription MBEAN
  MessagingMBeanManager MBeanManager = MessagingMBeanManager.getInstance();
  MBeanManager.registerMBean(this,
                QueueSubscriptionProxy.class,
                MBeanManager.buildQueueSubscriptionMBeanName(getIdentifier()));
}
origin: com.oracle.coherence.incubator/coherence-eventdistributionpattern

@OnArrived
@OnRestored
public void onEntryInserted(BinaryEntry entry)
origin: com.oracle.coherence.incubator/coherence-messagingpattern

@OnArrived
@OnRestored
public void onChanged(BinaryEntry entry)
com.oracle.coherence.common.liveobjectsOnArrived

Most used methods

  • <init>

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onRequestPermissionsResult (Fragment)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JPanel (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now