Skip to content

Tag: interface

How can I create a stream of objects?

Let’s say I have: and Then in a service, I have: It is not allowed to do the following: But ultimately, I have other classes that would share this interface and would want to do: Is there a way around this? Like using flatMap? (I noticed that if I have a wrapper class on a List of SomeClass objects, I

access interface out of the class java

I have a class A, another is B, there is one interface Ai with one method ok() only. Class A implements Ai, inside the ok I’m printing just a line. Class B has an instance of A, I want to access A’s interface Ai inside B. Can it be done ? If so how ? Answer All I needed is

Android MVP – Calls the server

I started to learn MVP but I have a few questions related the communication between the Model and the Presenter, for example a login feature Activity will get all the fields, send to the presenter, the presenter will validate and if it’s everything as expected the presenter will call the model to send t…