move wangle/futures to futures
authorJames Sedgwick <jsedgwick@fb.com>
Fri, 9 Jan 2015 16:27:02 +0000 (08:27 -0800)
committerViswanath Sivakumar <viswanath@fb.com>
Tue, 13 Jan 2015 19:01:05 +0000 (11:01 -0800)
commitbc374dcbb0e552826e4bcbed1d8cbd479ce062c0
treed7f320a72a8a436952c40601d7751a8cdca27559
parent0a9f6eefe125672a5978333c85acc865746841da
move wangle/futures to futures

Summary:
First step of moving futures out of wangle into folly

Namespace change will be another diff

This was just a straight codemod of "wangle/futures" to "futures"

Test Plan: wait for contbuild

Reviewed By: davejwatson@fb.com

Subscribers: trunkagent, fbcode-common-diffs@, chaoyc, search-fbcode-diffs@, lars, ruibalp, hero-diffs@, zeus-diffs@, vikas, mcduff, hitesh, cold-storage-diffs@, unicorn-diffs@, ldbrandy, targeting-diff-backend@, netego-diffs@, fugalh, adamsyta, atlas2-eng@, alandau, apollo-diffs@, bmatheny, adityab, everstore-dev@, zhuohuang, sweeney, mwa, jgehring, prometheus-diffs@, smarlow, akr, bnitka, jcoens, zhguo, jying, darshan, apodsiadlo, alikhtarov, fuegen, dzhulgakov, alihussains, jeremyfein, mshneer, folly-diffs@, wch, lins, tingy, maxwellsayles, hannesr

FB internal diff: D1772041

Tasks: 5960242

Signature: t1:1772041:1420739169:36126b1264c5d1747d241921d02b13e306c73fe1
79 files changed:
folly/Makefile.am
folly/futures/Deprecated.h [new file with mode: 0644]
folly/futures/Future-inl.h [new file with mode: 0644]
folly/futures/Future.cpp [new file with mode: 0644]
folly/futures/Future.h [new file with mode: 0644]
folly/futures/InlineExecutor.cpp [new file with mode: 0644]
folly/futures/InlineExecutor.h [new file with mode: 0644]
folly/futures/ManualExecutor.cpp [new file with mode: 0644]
folly/futures/ManualExecutor.h [new file with mode: 0644]
folly/futures/OpaqueCallbackShunt.h [new file with mode: 0644]
folly/futures/Promise-inl.h [new file with mode: 0644]
folly/futures/Promise.h [new file with mode: 0644]
folly/futures/QueuedImmediateExecutor.cpp [new file with mode: 0644]
folly/futures/QueuedImmediateExecutor.h [new file with mode: 0644]
folly/futures/README.md [new file with mode: 0644]
folly/futures/ScheduledExecutor.h [new file with mode: 0644]
folly/futures/Timekeeper.h [new file with mode: 0644]
folly/futures/Try-inl.h [new file with mode: 0644]
folly/futures/Try.h [new file with mode: 0644]
folly/futures/WangleException.h [new file with mode: 0644]
folly/futures/detail/Core.h [new file with mode: 0644]
folly/futures/detail/FSM.h [new file with mode: 0644]
folly/futures/detail/ThreadWheelTimekeeper.cpp [new file with mode: 0644]
folly/futures/detail/ThreadWheelTimekeeper.h [new file with mode: 0644]
folly/futures/detail/Types.h [new file with mode: 0644]
folly/futures/test/Benchmark.cpp [new file with mode: 0644]
folly/futures/test/ClientCompile.cpp [new file with mode: 0644]
folly/futures/test/ExecutorTest.cpp [new file with mode: 0644]
folly/futures/test/FSM.cpp [new file with mode: 0644]
folly/futures/test/FutureTest.cpp [new file with mode: 0644]
folly/futures/test/Interrupts.cpp [new file with mode: 0644]
folly/futures/test/Thens.cpp [new file with mode: 0644]
folly/futures/test/Thens.h [new file with mode: 0644]
folly/futures/test/TimekeeperTest.cpp [new file with mode: 0644]
folly/futures/test/Try.cpp [new file with mode: 0644]
folly/futures/test/ViaTest.cpp [new file with mode: 0644]
folly/futures/test/main.cpp [new file with mode: 0644]
folly/futures/test/thens.rb [new file with mode: 0755]
folly/wangle/channel/ChannelHandler.h
folly/wangle/channel/ChannelHandlerContext.h
folly/wangle/channel/ChannelPipeline.h
folly/wangle/concurrent/FutureExecutor.h
folly/wangle/futures/Deprecated.h [deleted file]
folly/wangle/futures/Future-inl.h [deleted file]
folly/wangle/futures/Future.cpp [deleted file]
folly/wangle/futures/Future.h [deleted file]
folly/wangle/futures/InlineExecutor.cpp [deleted file]
folly/wangle/futures/InlineExecutor.h [deleted file]
folly/wangle/futures/ManualExecutor.cpp [deleted file]
folly/wangle/futures/ManualExecutor.h [deleted file]
folly/wangle/futures/OpaqueCallbackShunt.h [deleted file]
folly/wangle/futures/Promise-inl.h [deleted file]
folly/wangle/futures/Promise.h [deleted file]
folly/wangle/futures/QueuedImmediateExecutor.cpp [deleted file]
folly/wangle/futures/QueuedImmediateExecutor.h [deleted file]
folly/wangle/futures/README.md [deleted file]
folly/wangle/futures/ScheduledExecutor.h [deleted file]
folly/wangle/futures/Timekeeper.h [deleted file]
folly/wangle/futures/Try-inl.h [deleted file]
folly/wangle/futures/Try.h [deleted file]
folly/wangle/futures/WangleException.h [deleted file]
folly/wangle/futures/detail/Core.h [deleted file]
folly/wangle/futures/detail/FSM.h [deleted file]
folly/wangle/futures/detail/ThreadWheelTimekeeper.cpp [deleted file]
folly/wangle/futures/detail/ThreadWheelTimekeeper.h [deleted file]
folly/wangle/futures/detail/Types.h [deleted file]
folly/wangle/futures/test/Benchmark.cpp [deleted file]
folly/wangle/futures/test/ClientCompile.cpp [deleted file]
folly/wangle/futures/test/ExecutorTest.cpp [deleted file]
folly/wangle/futures/test/FSM.cpp [deleted file]
folly/wangle/futures/test/FutureTest.cpp [deleted file]
folly/wangle/futures/test/Interrupts.cpp [deleted file]
folly/wangle/futures/test/Thens.cpp [deleted file]
folly/wangle/futures/test/Thens.h [deleted file]
folly/wangle/futures/test/TimekeeperTest.cpp [deleted file]
folly/wangle/futures/test/Try.cpp [deleted file]
folly/wangle/futures/test/ViaTest.cpp [deleted file]
folly/wangle/futures/test/main.cpp [deleted file]
folly/wangle/futures/test/thens.rb [deleted file]