Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2452

Show
Ignore:
Timestamp:
07/12/07 16:18:57 (1 year ago)
Author:
kris
Message:

some shuffling ...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/example/cluster/task.d

    r2450 r2452  
    55*******************************************************************************/ 
    66 
    7 import Add; 
    8  
    9 import tango.io.Stdout; 
     7import Add, tango.io.Stdout, tango.net.cluster.tina.ClusterTask; 
    108 
    119void main (char[][] args) 
  • trunk/example/cluster/tclient.d

    r2451 r2452  
    1111 
    1212import tango.util.log.Configurator; 
     13 
     14import tango.net.cluster.tina.ClusterTask; 
    1315 
    1416/******************************************************************************* 
  • trunk/tango/net/cluster/NetworkCall.d

    r2450 r2452  
    1616private import tango.core.Thread; 
    1717 
    18 private import tango.net.cluster.tina.Cluster; 
    19  
    2018private import tango.net.cluster.NetworkMessage; 
    2119 
     
    2422 
    2523protected import tango.net.cluster.model.IChannel; 
    26  
    27  
    28 /******************************************************************************* 
    29  
    30         Interim bootstrap for cluster connectivity  
    31  
    32 *******************************************************************************/ 
    33  
    34 static this () 
    35 { 
    36         auto cluster = (new Cluster).join; 
    37         Thread.setLocal (0, cast(void*) cluster.createChannel("task")); 
    38 } 
    3924 
    4025