Questions tagged [publisher]
325 questions
5
votes
1 answer
Pass @Published where @Binding is required (SwiftUI, Combine)
A ViewModel class has a sourceProperty that is being edited by the TextField. That property is @Published. I'd like to pass it to the Logic class which has an initializer with Binding. That class will be listening to the sourceProperty…

Richard Topchii
- 7,075
- 8
- 48
- 115
5
votes
2 answers
Clickonce app is signed but publisher is still unknown when downloading
I have a valid unexpired code signing certificate (standard, not EV) that I have used to sign a click once app (.net 4.5) successfully and publish to a web server for download. When downloading this app, it shows the publisher name correctly. The…

Jakal
- 62
- 2
- 13
5
votes
2 answers
Swift Combine - Create publisher for CoreLocation
I have only started learning combine, so it's still a little fuzzy to me. I would like to create a custom Publisher, that would use CLLocationManager to expose current user location. I would like it to work in such a way, that locationManager only…

Damian Dudycz
- 2,622
- 19
- 38
5
votes
3 answers
How to remove a published topic
I am new to MQTT protocol. As I read through the document, I couldn't see any function to remove the published topic. My purpose is to allow the publisher to remove the published topic. Did I miss something in the mqtt document? Any suggestion?…

Sirapat
- 446
- 2
- 8
- 13
5
votes
1 answer
Windows Phone - link to the publisher in the app store
I have created several windows phone apps and I would like to link to my publisher's page to show all of the apps that I publish. Note that I am developing my app for Windows Phone 7.x and up using C# and XAML.
UPDATE
What I would like to do is show…

Francisco d'Anconia
- 2,436
- 1
- 19
- 25
4
votes
2 answers
How to see all apps by a given publisher in the Google Play Store?
How to see a list of all apps published by a specific publisher in the Google Play Store?
There are related questions like List all products of publisher in play store on-site, but they don't provide the appropriate answer.
I tried…

J. M. Arnold
- 6,261
- 3
- 20
- 38
4
votes
1 answer
Swift Combine: direct output of one Publisher to the input of another
Consider the following synthetic scenario:
import Combine
let publisher1 = PassthroughSubject().eraseToAnyPublisher()
let publisher2 = PassthroughSubject()
publisher1.sink { value in
publisher2.send(value)
}
We have…

Richard Topchii
- 7,075
- 8
- 48
- 115
4
votes
1 answer
Why Empty Publisher not trigger completion event in Combine?
We know Empty Publisher in Combine will trigger a completion event immediately:
Empty()
.sink {
print("completion: \($0)") // will print!
} receiveValue: {}
But Empty Publisher that flatMap returned will NOT trigger…

hopy
- 559
- 3
- 18
4
votes
2 answers
Get an Publisher from InputStream
I just upgraded my mongo-db-java-driver and now the handy function GridFSBucket.uploadFromStream has gone. Therefore we now got a
GridFSUploadPublisher uploadFromPublisher(String filename, Publisher source);
Any ideas how to…

wutzebaer
- 14,365
- 19
- 99
- 170
4
votes
1 answer
Swift Combine return Publisher from func
I want to return the publisher for a function if there is error in input params for it but its giving some compilation error.
Below is the function for the same.
func fetchList(input: String) -> AnyPublisher
- {
guard let url =…

Ekra
- 3,241
- 10
- 41
- 61
4
votes
2 answers
ClickOnce: Unknown Publisher shown in the Installer, when the app is already signed
I have published a basic unsigned windows form application using ClickOnce on Visual Studio. I took the .exe file and .exe.config file and moved it to a folder on my desktop. I signed the .exe file with a legitimate digiCert signing tool, and I…

User1111
- 41
- 2
4
votes
1 answer
Lazy pub/sub in zeromq, only get last message
I'am trying to implement a lazy subscriber on zeromq from the example wuclient/wuserver.
The client is way slower than the server, so it must get only the last sent message by the server.
So far the only way i've found to do that, is by…

Mathieu Westphal
- 2,544
- 1
- 19
- 33
4
votes
1 answer
How to add Publisher Certificate to Cx_freeze msi bundle?
I'm trying to make an " msi " using cx_freeze. When I distribute it to users, it's showing unknown publisher.
How to get publisher certificates, How can I add it to cx_freeze?

gwthm.in
- 638
- 9
- 24
4
votes
1 answer
exposing part of my parse.com api to other developers via ouath 2.0
It's now trivial to create a web app that sits atop Parse.com. Now that I have this webapp, I want to expose parts of it to other developers via an oauth accesible api. So, they can develop an app that lets my site users 'give them permission' via…

molicule
- 5,481
- 3
- 29
- 40
4
votes
1 answer
SQL Server replication using FTP
I have:
SQL A - publisher (SQL 2008 R2 Dev)
SQL B - subscriber (SQL 2008 R2 Standard)
SQL A and SQL B are on different networks, not direct connection is allowed.
I enable FTP publishing on SQL A.
Created subscription on SQL B to get files from…

Ivan
- 103
- 1
- 7