Challenge

Next is a challenge covering what we have learned so far.

We'll cover the following

Problem statement

Given a class that performs the following synchronous networking operation, convert the result to a cold Observable variable named observableUsers.

class NetworkClient {
    public List<User> getUsers() {
        // Performs blocking networking operation here
    }
}

Get hands-on with 1200+ tech skills courses.