Questions tagged [subscription]

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

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

2251 questions
2
votes
1 answer

How can I migrate Azure Pay as you go subscription to Azure plan with zero downtime?

I found a way of migrating the resources first using Azure Resource Mover and then Switch the subscription. But still few resources cant be moved like Public IP (Standard SKU). This migration does have a…
2
votes
3 answers

Subscribe not being triggered when the subject values changes

I have two components A and B, and when an event occurs in A, I need to get the updated value in B in which I am subscribing to a service to get the latest value from A. component A: sendString(inputEntered){ //happens when on…
Reddy
  • 21
  • 2
2
votes
2 answers

Event Subscription Lost when Passing Instance Object

I have created an external class (TheClass) with an event (TheEvent) and subscribe to it from within another class's Panel constructor: public aPanel() { ... theClassInstance.TheEvent += new WaitCallback(aMethod); ... } Later in the…
john
  • 4,043
  • 7
  • 27
  • 39
2
votes
1 answer

Error chaining from a service to component for a http.post subscription

I am using firebase to authenticate a sign in and then send a request to my backend to create a custom session token for the logged in user. For this, I send in a function call from my component.ts to service.ts. SignIn(email: string, password:…
lobit
  • 55
  • 6
2
votes
1 answer

With apollo client, how to trigger resubscription using reactive variables?

Apollo client and graphql versions: "dependencies": { "@apollo/client": "^3.3.20", "graphql": "^15.5.0", ... } I want to subscribe to a list filtered by user input, in react. Use reactive variable to store the user input: import {…
youwenti
  • 133
  • 9
2
votes
3 answers

I need to listen if there any changes in the form, make enable/disable SAVE button if there changes or not | Angular

Have issue with listening any changes on a page there is some information, and even if no changes SAVE button active for click ngOnInit(): void { this.createConfigForm() …
2
votes
1 answer

How can I get in-app purchase subscription period below iOS 11.2?

I am new on in-app purchase. How can I get subscriptionPeriod below iOS 11.2? As I see it is available from iOS 11.2 in SKProduct class. My code is like this: var durationNumberString: String? { if #available(iOS 11.2, *) { guard let nu…
Shohin
  • 519
  • 8
  • 11
2
votes
1 answer

Mongodb always increased "_id" field?

Is _id field in mongodb always increased for the next inserted document in the collection even if we have multiple shards? So if I have collection.watch do I always get higher _id field for the next document than for the prev one? I need this to…
Vladyslav Mozhvylo
  • 331
  • 1
  • 2
  • 11
2
votes
1 answer

Adding Subscription In-App Purchase to Safari Web Extension

I have created a Safari Web Extension, now I want to add Subscription In-App Purchase into this app. Since the Safari Web Extension has two parts: the Mac App and the Extension. I want to ask can I add the IAP codes into the Extension part? So, the…
RRN
  • 1,127
  • 1
  • 12
  • 37
2
votes
1 answer

What is the minimum target iOS version for auto-renewable subscriptions?

Is there a minimum version of iOS that is needed to support auto-renewable subscriptions? I know that feature was introduced in iOS 4.3 but I don't see anything about it that would seem to force it to only work on 4.3 and later devices. Has anyone…
Mattia
  • 2,251
  • 1
  • 22
  • 27
2
votes
2 answers

Applying Filter policy to SNS subscription

We have created different config rules for different resources in our AWS account. We have enabled the SNS subscription for the alerts. However, I want to add a filter policy to the subscription that it should give the alerts only for one specific…
knowledge20
  • 1,006
  • 3
  • 14
  • 25
2
votes
3 answers

Angular subscribes not working how I expect

I'm at a loose end here and trying to understand the flow of how angular subscriptions work. I make a call to an API and in the response I set the data in a behaviourSubject. So I can then subscribe to that data in my application. Normally I would…
ronoc4
  • 625
  • 2
  • 6
  • 21
2
votes
0 answers

Needed clarification for cancelReason from Resource: SubscriptionPurchase

We are working on back-to-back service. To obtain the sub status we leverage the standard API call (Resource: SubscriptionPurchase) to get the current sub state. The most challenge scenario we are blocked with is what the proper way interpreting…
2
votes
2 answers

Angular wait for all subscriptions to complete

In Angular a page makes multiple http calls on multiple actions, let's say button clicks. But when the last "DONE" button is pressed I want to make sure that all those requests are finished before it progresses. I tried to use forkJoin with…
jonasnas
  • 3,540
  • 1
  • 23
  • 32
2
votes
4 answers

In app purchase - How Subscription works?

i'm working on an magazine app for iPad and i've been asked to build a system to allow users to subscribe for, say, a year. I have to say... I didn't quite get the concept of Subscription... Anyway, there's my point: should I implement a real…
Marcello
  • 31
  • 3