Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/palkan/as3_p2plocal

as3 lib for local p2p connections (serverless rtmfp)
https://github.com/palkan/as3_p2plocal

Last synced: about 1 month ago
JSON representation

as3 lib for local p2p connections (serverless rtmfp)

Awesome Lists containing this project

README

        

AS3 local RTMFP connections library
----------

### Features:

* Create new local net group with just one call using config Object
* Message types
* Direct routing (peer-to-peer send message)
* Automatically restore session state (if there is at least one another peer in the group)

Examples: [http://palkan.github.io/as3_p2plocal/examples/index.html](http://palkan.github.io/as3_p2plocal/examples/index.html)

### Usage

```actionscript

// ---------- init ------------//

p2p_client = new P2PClient(); //create new instance

p2p_client.addEventListener(P2PEvent.CONNECTED, onConnect); // add listener for 'connect' event: it means connection established and you are connected to NetGroup; if you don't need to restore a state - that's enough
p2p_client.addEventListener(P2PEvent.STATE_RESTORED, onStateRestored); // add listener for 'state_restored' event: it means all previously dispatched messages within the group has been received and ready to be parsed;

p2p_client.listen(messageReceived, "message"); // add listener for messages of a type "message"

p2p_client.connect(new P2PConfig({
groupName: "example", // NetGroup name
saveState: "true" // restore state from previous messages
}));

//------------- state restored ---------//

function onStateRestored(e:P2PEvent):void {
// e.info.state contains an Array of messages
}

//------------ receive messages --------//

function messageReceived(p:P2PPacket):void{
// handle message; p.data contains data was sent
}

//------------ send messages ----------//

p2p_client.send(data, type(="default"), system (=true), recipient(="");

```