org.apache.rocketmq.common.utils.HttpTinyClient.HttpResult Java Examples

The following examples show how to use org.apache.rocketmq.common.utils.HttpTinyClient.HttpResult. 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: HttpFilterClassFetchMethod.java    From DDMQ with Apache License 2.0 6 votes vote down vote up
@Override
public String fetch(String topic, String consumerGroup, String className) {
    String thisUrl = String.format("%s/%s.java", this.url, className);

    try {
        HttpResult result = HttpTinyClient.httpGet(thisUrl, null, null, "UTF-8", 5000);
        if (200 == result.code) {
            return result.content;
        }
    } catch (Exception e) {
        log.error(
            String.format("call <%s> exception, Topic: %s Group: %s", thisUrl, topic, consumerGroup), e);
    }

    return null;
}
 
Example #2
Source File: HttpFilterClassFetchMethod.java    From rocketmq with Apache License 2.0 6 votes vote down vote up
@Override
public String fetch(String topic, String consumerGroup, String className) {
    String thisUrl = String.format("%s/%s.java", this.url, className);

    try {
        HttpResult result = HttpTinyClient.httpGet(thisUrl, null, null, "UTF-8", 5000);
        if (200 == result.code) {
            return result.content;
        }
    } catch (Exception e) {
        log.error(
            String.format("call <%s> exception, Topic: %s Group: %s", thisUrl, topic, consumerGroup), e);
    }

    return null;
}
 
Example #3
Source File: HttpFilterClassFetchMethod.java    From DDMQ with Apache License 2.0 6 votes vote down vote up
@Override
public String fetch(String topic, String consumerGroup, String className) {
    String thisUrl = String.format("%s/%s.java", this.url, className);

    try {
        HttpResult result = HttpTinyClient.httpGet(thisUrl, null, null, "UTF-8", 5000);
        if (200 == result.code) {
            return result.content;
        }
    } catch (Exception e) {
        log.error(
            String.format("call <%s> exception, Topic: %s Group: %s", thisUrl, topic, consumerGroup), e);
    }

    return null;
}
 
Example #4
Source File: HttpFilterClassFetchMethod.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 6 votes vote down vote up
@Override
public String fetch(String topic, String consumerGroup, String className) {
    String thisUrl = String.format("%s/%s.java", this.url, className);

    try {
        HttpResult result = HttpTinyClient.httpGet(thisUrl, null, null, "UTF-8", 5000);
        if (200 == result.code) {
            return result.content;
        }
    } catch (Exception e) {
        log.error(
            String.format("call <%s> exception, Topic: %s Group: %s", thisUrl, topic, consumerGroup), e);
    }

    return null;
}
 
Example #5
Source File: HttpFilterClassFetchMethod.java    From rocketmq_trans_message with Apache License 2.0 6 votes vote down vote up
@Override
public String fetch(String topic, String consumerGroup, String className) {
    String thisUrl = String.format("%s/%s.java", this.url, className);

    try {
        HttpResult result = HttpTinyClient.httpGet(thisUrl, null, null, "UTF-8", 5000);
        if (200 == result.code) {
            return result.content;
        }
    } catch (Exception e) {
        log.error(
            String.format("call <%s> exception, Topic: %s Group: %s", thisUrl, topic, consumerGroup), e);
    }

    return null;
}