Mapping the return type of subscribe to other type

49 Views Asked by At

Map the return type in RXJava

@Queue(ProductTopicConstants.DELETE_PRODUCT)
    public Single<String> Delete(String id) {
        LOG.info(String.format("Listener --> Delete the document from the database"));
        ProductSearchCriteria criteria = new ProductSearchCriteria();
        criteria.setId(id);
        Bson query = QueryBuilder.QueryBuilder(criteria, Bson.class).get(0);
        return  Single.fromPublisher(
                this.repository.getCollection(ProductConstrants.PRODUCT_COLLECTION_NAME, Product.class)
                        .deleteOne(query)).flatMap(item ->{
                            if(item.getDeletedCount() == 0)
                                return Single.just("Success");
                            else
                                return Single.just(id);
        });
    }

Now return type is Disposable type, is it possible to convert to other Type such as Single<String> I tried flatMap and MAP, but when I subscribe the method it is again converted to the Disposable

0

There are 0 best solutions below