Tabnine Logo
IKafkaTopicNaming.getEventSourceDecodedEventsTopic
Code IndexAdd Tabnine to your IDE (free)

How to use
getEventSourceDecodedEventsTopic
method
in
com.sitewhere.spi.microservice.kafka.IKafkaTopicNaming

Best Java code snippets using com.sitewhere.spi.microservice.kafka.IKafkaTopicNaming.getEventSourceDecodedEventsTopic (Showing top 2 results out of 315)

origin: sitewhere/sitewhere

  @Override
  public String getTargetTopicName() throws SiteWhereException {
  return getMicroservice().getKafkaTopicNaming().getEventSourceDecodedEventsTopic(getTenantEngine().getTenant());
  }
}
origin: sitewhere/sitewhere

@Override
public List<String> getSourceTopicNames() throws SiteWhereException {
List<String> topics = new ArrayList<String>();
topics.add(getMicroservice().getKafkaTopicNaming()
  .getEventSourceDecodedEventsTopic(getTenantEngine().getTenant()));
topics.add(
  getMicroservice().getKafkaTopicNaming().getInboundReprocessEventsTopic(getTenantEngine().getTenant()));
return topics;
}
com.sitewhere.spi.microservice.kafkaIKafkaTopicNaminggetEventSourceDecodedEventsTopic

Javadoc

Get name for topic that contains events that have been decoded from inbound event sources.

Popular methods of IKafkaTopicNaming

  • getTenantPrefix
    Get prefix used for tenant-specific topics.
  • getInboundEnrichedEventsTopic
    Get topic for events that have been persisted and enriched with device/assignment data.
  • getDeviceRegistrationEventsTopic
    Get name for topic that contains events for device registration requests decoded by event sources.
  • getInboundEnrichedCommandInvocationsTopic
    Get topic for device command invocations that have been persisted and enriched with device/assignmen
  • getInboundPersistedEventsTopic
    Get topic for events that have been persisted to an event datastore.
  • getInstancePrefix
    Get prefix that uniquely identifies SiteWhere instance.
  • getUnregisteredDeviceEventsTopic
    Get name for topic that contains events for devices that were not registered in the system.
  • getEventSourceFailedDecodeTopic
    Get name for topic that contains events that could not be decoded from event sources.
  • getFailedBatchElementsTopic
    Get topic for failed batch elements.
  • getInboundReprocessEventsTopic
    Get topic for inbound events that were sent for out-of-band processing, then returned to be reproces
  • getMicroserviceStateUpdatesTopic
    Get topic name for tracking microservice state updates.
  • getTenantUpdatesTopic
    Get topic name for tracking tenant model updates.
  • getMicroserviceStateUpdatesTopic,
  • getTenantUpdatesTopic,
  • getUndeliveredCommandInvocationsTopic,
  • getUnprocessedBatchElementsTopic,
  • getUnprocessedBatchOperationsTopic

Popular in Java

  • Making http post requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • scheduleAtFixedRate (Timer)
  • Kernel (java.awt.image)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JButton (javax.swing)
  • Top plugins for WebStorm
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