]> git.mxchange.org Git - hub.git/commit - application/hub/config.php
Introduced Recipient implentation classes:
authorRoland Häder <roland@mxchange.org>
Mon, 18 Feb 2013 05:49:14 +0000 (05:49 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 18 Feb 2013 05:49:14 +0000 (05:49 +0000)
commitdef13a3334fbae9bfad71c740ee4a03d818ea0fe
tree7781acd753399edd3b4064e84b813638c41fb87b
parent2007ed48454294e3d4f47c9f9d79d558b934f08b
Introduced Recipient implentation classes:
- DirectRecipient: A direct session id that needs solving into an ip:port
  combination
- DhtRecipient: A virtual recipient that will cause querying the local DHT
  data for possible recipients (unfinished)
- SelfRecipient: A virtual recipient, yet direct one, as this will be resolved
  into *this* own node's session id
- UpperRecipient A virtual recipient for all boot, master and list node's
  session ids
- Internal TODO for above closed (and nicely solved)
18 files changed:
.gitattributes
application/hub/config.php
application/hub/interfaces/queues/class_Queueable.php
application/hub/interfaces/recipient/.htaccess [new file with mode: 0644]
application/hub/interfaces/recipient/class_Recipient.php [new file with mode: 0644]
application/hub/main/discovery/package/class_PackageRecipientDiscovery.php
application/hub/main/recipient/.htaccess [new file with mode: 0644]
application/hub/main/recipient/class_ [new file with mode: 0644]
application/hub/main/recipient/class_BaseRecipient.php [new file with mode: 0644]
application/hub/main/recipient/dht/.htaccess [new file with mode: 0644]
application/hub/main/recipient/dht/class_DhtRecipient.php [new file with mode: 0644]
application/hub/main/recipient/direct/.htaccess [new file with mode: 0644]
application/hub/main/recipient/direct/class_DirectRecipient.php [new file with mode: 0644]
application/hub/main/recipient/self/.htaccess [new file with mode: 0644]
application/hub/main/recipient/self/class_SelfRecipient.php [new file with mode: 0644]
application/hub/main/recipient/upper/.htaccess [new file with mode: 0644]
application/hub/main/recipient/upper/class_UpperRecipient.php [new file with mode: 0644]
application/hub/main/states/dht/class_BaseDhtState.php