Java Code Examples for org.apache.kafka.common.utils.AppInfoParser#getVersion()

The following examples show how to use org.apache.kafka.common.utils.AppInfoParser#getVersion() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConsoleSourceConnect.java    From KafkaExample with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 2
Source File: IgniteSourceConnector.java    From ignite with Apache License 2.0 4 votes vote down vote up
/** {@inheritDoc} */
@Override public String version() {
    return AppInfoParser.getVersion();
}
 
Example 3
Source File: IgniteSinkConnector.java    From ignite with Apache License 2.0 4 votes vote down vote up
/** {@inheritDoc} */
@Override public String version() {
    return AppInfoParser.getVersion();
}
 
Example 4
Source File: InfluxDbSinkConnector.java    From kafka-metrics with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 5
Source File: MySqlSourceConnector.java    From kafka-mysql-connector with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 6
Source File: FileStreamSinkConnector.java    From kafka-connector-skeleton with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 7
Source File: FileStreamSourceConnector.java    From kafka-connector-skeleton with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 8
Source File: CloudPubSubSourceConnector.java    From pubsub with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return AppInfoParser.getVersion();
}
 
Example 9
Source File: CloudPubSubSinkConnector.java    From pubsub with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return AppInfoParser.getVersion();
}
 
Example 10
Source File: AmazonKinesisSinkConnector.java    From kinesis-kafka-connector with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
	// Currently using Kafka version, in future release use Kinesis-Kafka version
	return AppInfoParser.getVersion();

}
 
Example 11
Source File: ConsoleSinkTask.java    From KafkaExample with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 12
Source File: ConsoleSinkConnect.java    From KafkaExample with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 13
Source File: MongoDbSinkConnector.java    From MongoDb-Sink-Connector with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 14
Source File: IRCFeedConnector.java    From hello-kafka-streams with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 15
Source File: SchemaSourceConnector.java    From streamx with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
  return AppInfoParser.getVersion();
}
 
Example 16
Source File: FirehoseSinkConnector.java    From kinesis-kafka-connector with Apache License 2.0 4 votes vote down vote up
@Override
public String version() {
	// Currently using Kafka version, in future release use Kinesis-Kafka version
	return AppInfoParser.getVersion();
}
 
Example 17
Source File: MongodbSourceConnector.java    From kafka-connect-mongodb with Apache License 2.0 2 votes vote down vote up
/**
 * Get the version of this connector.
 *
 * @return the version, formatted as a String
 */
@Override
public String version() {
    return AppInfoParser.getVersion();
}
 
Example 18
Source File: MongodbSinkConnector.java    From kafka-connect-mongodb with Apache License 2.0 2 votes vote down vote up
/**
 * Get the version of this connector.
 *
 * @return the version, formatted as a string
 */
@Override
public String version() {
    return AppInfoParser.getVersion();
}