Created
July 16, 2013 19:59
-
-
Save benjchristensen/6012122 to your computer and use it in GitHub Desktop.
Feign GitHubExample.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2013 Netflix, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package feign.example.cli; | |
import feign.Feign; | |
import feign.IncrementalCallback; | |
import feign.RequestLine; | |
import feign.gson.GsonModule; | |
import javax.inject.Named; | |
import java.util.List; | |
import java.util.concurrent.CountDownLatch; | |
/** | |
* adapted from {@code com.example.retrofit.GitHubClient} | |
*/ | |
public class GitHubExample { | |
interface GitHub { | |
@RequestLine("GET /repos/{owner}/{repo}/contributors") | |
List<Contributor> contributors(@Named("owner") String owner, @Named("repo") String repo); | |
/* Only require the previous line to be created ... the next would be optionally explicit */ | |
//@RequestLine("GET /repos/{owner}/{repo}/contributors") | |
//void contributors(@Named("owner") String owner, @Named("repo") String repo, | |
// IncrementalCallback<Contributor> contributors); | |
} | |
static class Contributor { | |
String login; | |
int contributions; | |
} | |
public static void main(String... args) throws InterruptedException { | |
GitHub github = Feign.create(GitHub.class, "https://api.github.com", new GsonModule()); | |
IncrementalCallback<Contributor> task = new IncrementalCallback<Contributor>() { | |
public int count; | |
// parsed directly from the text stream without an intermediate collection. | |
@Override public void onNext(Contributor contributor) { | |
System.out.println(contributor.login + " (" + contributor.contributions + ")"); | |
count++; | |
} | |
@Override public void onSuccess() { | |
System.out.println("found " + count + " contributors"); | |
latch.countDown(); | |
} | |
@Override public void onFailure(Throwable cause) { | |
cause.printStackTrace(); | |
latch.countDown(); | |
} | |
}; | |
/* if they explicitly added the async method this can be used */ | |
// fire a task in the background. | |
//github.contributors("netflix", "feign", task); | |
/* otherwise we can hit the dynamically generated async method */ | |
Feign.execute(github, "netflix", "feign", task); | |
// wait for the task to complete. | |
latch.await(); | |
System.exit(0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment