Questions tagged [distributed-objects]

Distributed objects architecture enables objects in different threads or tasks, perhaps on different machines, to transparently send messages to each other

Distributed objects architecture enables objects in different threads or tasks, perhaps on different machines, to transparently send messages to each other. While there are many ways for threads and tasks to communicate with one another, distributed objects hides the mechanism behind the standard Objective-C messaging mechanism.
Distributed Objects Programming Topics

51 questions
0
votes
1 answer

Is it secure to communicate with localhost via a socket without TLS or similar?

I'm writing a library that implements a distributed object system over a socket connection. I'm requiring that users sign any messages sent, at least when communicating over a network, as otherwise an attacker could pose as one of the participants…
Chris Devereux
  • 5,453
  • 1
  • 26
  • 32
0
votes
1 answer

Objective-C: Avoiding EXCEPTIONS when NSConnection to Distributed Objects fail

I'm using Objective-C Distributed Objects (DO) to share data from one application (that collects data from the network) to another (a patch inside Quartz Composer). When the connection to the distant object fails (when I shut down the first…
Adam
  • 913
  • 1
  • 9
  • 26
0
votes
1 answer

Objective-C Distributed Objects with ARC sever and 32bit proxy?

I have a 64bit application using ARC, that is serving up a distributed object. The application that uses the proxy object is a 32bit application, so it's not using ARC. Is this going to create problems for me? I also want to reuse my classes…
0
votes
2 answers

Distributed Objects + Grand Central Dispatch

Not a specific question as such, I'm more trying to test the waters. I like distributed objects, and I like grand central dispatch; How about I try to combine the two? Does that even make sense? Has anyone played around in these waters? Would I be…
-1
votes
1 answer

oneway modifier objective c

a oneway method is asynchronous (the result is not immediately expected)[1]. oneway is used with the distributed objects API. [2] But i found below code in SCPlugin + (oneway void) executeShellCommandAsynchronously:(NSString*)command { [[self…
Parag Bafna
  • 22,812
  • 8
  • 71
  • 144
-2
votes
1 answer

Looking for clustering message framework for Python

I'm looking for a messaging framework to build up a cluster in Python (something similar to Apache Tribes). Are there any such frameworks in Python?
JMW
  • 7,151
  • 9
  • 30
  • 37
1 2 3
4