ResponseEntity<T> exchange(String url,
HttpMethod method,
HttpEntity<?> requestEntity,
Class<T> responseType,
Object... uriVariables)
throws RestClientException
(ref: https://docs.spring.io/spring/docs/current/javadoc-api/org/s...) interface ToDoService {
ListToDoResponse listToDo(ListToDoRequest request) throws ListToDoException;
AddToDoResponse addToDo(AddToDoRequest request) throws AddToDoException;
.. and so on ..
} myRobot.arcade(stick);
http://wpilib.screenstepslive.com/s/4485/m/13809/l/145307-cr... [1]The Try type represents a computation that may either result in an exception, or return a successfully computed value. http://www.scala-lang.org/files/archive/nightly/docs/library/index.html#scala.util.Try
[2]http://channel9.msdn.com/Events/Lang-NEXT/Lang-NEXT-2014/Keynote-Duality
Provides a very good idea of the courses required and their time frame. I roughly followed along this path but took "Analytics Edge" https://www.edx.org/course/analytics-edge-mitx-15-071x-3 for introduction into ML algorithms.