This file contains 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
public class JacksonConverter<T> implements FileObjectQueue.Converter<T> { | |
private final ObjectMapper mMapper; | |
private final Class<T> mType; | |
public JacksonConverter(ObjectMapper mapper, Class<T> type) { | |
this.mType = type; | |
this.mMapper = mapper; | |
} |
This file contains 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
public class MuzeiExtensionService extends MuzeiArtSource { | |
private SubscriberManager mSubscriberManager; | |
public MuzeiExtensionService() { | |
super(MuzeiExtensionService.class.getName()); | |
} | |
@Override | |
public void onCreate() { |