Questions tagged [subscription]

An arrangement to receive something, typically a publication, regularly.

An arrangement to receive something, typically a publication, regularly.

2251 questions
1
vote
0 answers

Track onDisconnect on multi-subscription nestjs server

So I've got NestJs application, where I've gotmultiple subscriptions. from client side on my react app with apolloClinet I'm listening one continuously that's notification Listener. I also have messaging subscription that fetches new messages when…
IosebOne
  • 33
  • 4
1
vote
3 answers

Stripe Payment Hold for Subscriptions

I've been working with Stripe Payment Integration and currently find myself stuck with a particular use-case. Stripe has the option to hold a payment for future, and capture the amount later based on business logic. This is explained here (…
Bernerd
  • 68
  • 5
1
vote
0 answers

How to switch between In-App-Purchase subscriptions?

I have an app in App Store using In-App Purchase with non consumable type. Last week my client wanted to switch the In-App Purchase type from Non-consumable to Non-renewable subscription (user have to manually renew for each month). I have searched…
john raja
  • 509
  • 4
  • 8
1
vote
1 answer

Is it possible to open Android / iOS subscriptions manager from a Xamarin app?

I desire to create a button labeled as "Manage your subscription", which will perform an action of opening the subscriptions manager of the runtime platform(ios or android). This would avoid to code requisitions to Google Play's and App Store's…
Éder Rocha
  • 1,538
  • 11
  • 29
1
vote
1 answer

Integration test with cloud pubsub emulator. Sending and Receiving from the same code block

I've been trying to test the interactions with Cloud PubSub using the emulator. It publishes the message to the topic but the receiver doesn't get triggered. Here's the code workthrough: func TestPubSubEmulator(t *testing.T) { ctx :=…
1
vote
1 answer

Rxjs using previous observable from early stage of the chain

How do I use an observable from early stage of the chain (not the last one). I have code like this: deleteGroceryStoreAndItsOwner() { this.groceryStoreOwnerService.getGroceryStoreOwnerSummaries(this.city.uuid) …
STH
  • 73
  • 6
1
vote
1 answer

WooCommerce Subscriptions - Changing the wording/removing subscription terms (eg /month)

I found this older post: How to change the "/ month" on a woocommerce subscription product page ''' add_filter('woocommerce_subscriptions_product_price_string_inclusions', 'remove_subscription_inclusions', 10, 2); function…
1
vote
2 answers

Fiware Draco - Subscription works only for the first payload. Only the first payload is saved in historical mongodb

I am trying to save historical context data in Mongo, but without success. Only the first payload sent to Draco is saved to MongoDB for historical data, but Mongo does not react to attribute updates. Versions used for the test: Orion-LD version…
dacak
  • 60
  • 5
1
vote
0 answers

AppSync (managed GraphQL) subscription fails sometimes but starts working fine on reloading any page of the application

I went through a lot of documentation including the official documentation of GraphQL and Appsync subscription but was unable to find the cause why subscription fails sometimes. My current scenario is given below: When the admin updates the…
1
vote
1 answer

Swift Combine: Separate published array and then assign

I have a publisher which returns an array of RetailStoreSlotDay objects. I need to separate these out based on a certain property and then assign to separate publishers within the view model. So, my publisher is: @Published var selectedDaySlot:…
DevB1
  • 1,235
  • 3
  • 17
  • 43
1
vote
1 answer

Clearing subscription when navigating to other page not working

I am developing a simple search screen to learn angular subscription which i find to be very confusing. In my home page page I created two components. One filter components and second search result component. Here is my filter service export class…
DotNetBeginner
  • 412
  • 2
  • 15
  • 34
1
vote
1 answer

Why calling a service within another service is causing unexpected calling behaviour?

Suppose, I call one service returning observable and if it doesn't throw any error then should call another service which also returns observable. What I have done is that I have called both separately such as one after the other but when I debug…
1
vote
0 answers

Solving STOMP Error "There is no current subscription with tag 'T-...''' in RabbitMQ

I'm facing the error message 'There is no current subscription with tag 'T_1'. Due to this error, my connections are terminated which decreases the performance of my system. First of, the environment I'm running: Client app (Created in c#) Server…
Chillychillx
  • 23
  • 1
  • 5
1
vote
1 answer

Stripe subscription set billing date as first of each month

I'm using Stripe Checkout flow to collect the users' payment details and automatically collect the subscription. I have also implemented webhooks to listen to checkout.session.completed so that I can edit the subscription. What I want is as…
artooras
  • 6,315
  • 9
  • 45
  • 78
1
vote
0 answers

Schedules subscription laravel stripe

I tried to create a Schedule subscription in my laravel app with cashier using start_date attribut but i got the following error : parameter_unknown - start_date Received unknown parameter: start_date code : $stripeSubscription =…