mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Add methods from Rhapsody.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3220 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d3750cb47f
commit
ee1b63a7ad
10 changed files with 116 additions and 3 deletions
|
@ -362,6 +362,12 @@ static int messages_received_count;
|
|||
return newConn;
|
||||
}
|
||||
|
||||
+ (id)currentConversation
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
return self;
|
||||
}
|
||||
|
||||
+ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)n
|
||||
host: (NSString*)h
|
||||
{
|
||||
|
@ -444,6 +450,18 @@ static int messages_received_count;
|
|||
return independant_queueing;
|
||||
}
|
||||
|
||||
- (void) enableMultipleThreads
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
- (BOOL) multipleThreadsEnabled
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
return NO;
|
||||
}
|
||||
|
||||
|
||||
- (id) init
|
||||
{
|
||||
id newPort = [[default_receive_port_class newForReceiving] autorelease];
|
||||
|
@ -560,6 +578,12 @@ static int messages_received_count;
|
|||
[super release];
|
||||
}
|
||||
|
||||
- (NSArray *) remoteObjects
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (void) removeRequestMode: (NSString*)mode
|
||||
{
|
||||
if ([request_modes containsObject:mode]) {
|
||||
|
@ -568,6 +592,11 @@ static int messages_received_count;
|
|||
}
|
||||
}
|
||||
|
||||
- (void) removeRunLoop: (NSRunLoop *)runloop
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
- (NSTimeInterval) replyTimeout
|
||||
{
|
||||
return reply_timeout;
|
||||
|
@ -1922,7 +1951,7 @@ static int messages_received_count;
|
|||
[self _release_targets:&aProxy count:1];
|
||||
}
|
||||
|
||||
- (id <Collecting>) localObjects
|
||||
- (NSArray *) localObjects
|
||||
{
|
||||
id c;
|
||||
|
||||
|
@ -1933,7 +1962,7 @@ static int messages_received_count;
|
|||
return c;
|
||||
}
|
||||
|
||||
- (id <Collecting>) proxies
|
||||
- (NSArray *) proxies
|
||||
{
|
||||
id c;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue