├── .gitignore ├── ADBActors-Prefix.pch ├── ADBActors.podspec ├── ADBActors.xcodeproj └── project.pbxproj ├── LICENSE ├── README.md ├── Src ├── ADBActor.h ├── ADBActor.m ├── ADBMessage.h └── ADBMessage.m ├── TestActor.h ├── TestActor.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/.gitignore -------------------------------------------------------------------------------- /ADBActors-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/ADBActors-Prefix.pch -------------------------------------------------------------------------------- /ADBActors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/ADBActors.podspec -------------------------------------------------------------------------------- /ADBActors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/ADBActors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/README.md -------------------------------------------------------------------------------- /Src/ADBActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/Src/ADBActor.h -------------------------------------------------------------------------------- /Src/ADBActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/Src/ADBActor.m -------------------------------------------------------------------------------- /Src/ADBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/Src/ADBMessage.h -------------------------------------------------------------------------------- /Src/ADBMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/Src/ADBMessage.m -------------------------------------------------------------------------------- /TestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/TestActor.h -------------------------------------------------------------------------------- /TestActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/TestActor.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertodebortoli/ADBActors/HEAD/main.m --------------------------------------------------------------------------------