This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
[REEF-362] Implement a Wake Transport using HTTP #1341
Open
nhne
wants to merge
38
commits into
apache:master
Choose a base branch
from
nhne:REEF-362
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
48ec577
[REEF-362] Implement a Wake Transport using HTTP
nhne 56d0650
Added a test for RemoteManager with Http Transport
nhne 4994107
separated NettyChannelFutureListener from NettyLink
nhne d3f7a46
Refactored Netty Codes for HTTP
nhne 1ecda33
Removed HttpMessagingTransportFactory and Refactored Code
nhne 9510d61
Removed package reef.wake.remote.transport.netty.http
nhne 31e5efa
fixed errors regarding to review
nhne bc42c3d
fixed errors regarding to review
nhne 5b3f1b5
Merge branch 'REEF-362' of https://github.com/nhne/reef into REEF-362
nhne 1943609
Fixed errors and typos
nhne dc36180
added a java doc and fixed format error
nhne abd316d
reverted some interface back
nhne 7ce5b33
Fixed implementation to accept PROTOCOL_HTTPS
nhne 14121e7
fixed TransportHttpTest
nhne 476ebe1
Fixed String into ProtocolTypes
nhne 2befc1a
Fixed reflexing reviews
nhne df5fea5
implemented NettyLinkFactory and its default class
nhne 985ad1a
added NettyHttpLinkFactory
nhne 8fd67f6
excluded HTTPS related codes
nhne 37a9ada
removed ssl part
nhne 40f335d
Merge branch 'master' of https://github.com/apache/reef into REEF-362
nhne 817fa0e
changed constant String into enum and altered NettyChannelInitializer
nhne 3674ffa
Merge branch 'master' of https://github.com/apache/reef into REEF-362
nhne cdaadcc
Merge branch 'REEF-362' of https://github.com/nhne/reef into REEF-362
nhne 4990972
changed TransportFactory to use protocol as constructor parameter
nhne 9e9260a
refactored TransportTest and merged TransportHttpTest into TransportTest
nhne 29344b6
merged RemoteMangerTestHttp into RemoteManagerTest
nhne 017154e
changed implementation of ChannelInitializer, Http Event Listener
nhne f221dbb
fixed NettyChannelInitializer and Event Listener, NettyHttpLink
nhne 455464a
changed implementation in Netty[HttpServer,Client]EventListener
nhne bd3b205
removed check on lenth of content
nhne 2225679
copiedBuffer to wrappedBuffer
nhne b20df37
removed sync() in NettyHttpLink
nhne 94fb7bc
removed `sync()` in NettyHttpLink
nhne 046739d
check isLoggable
nhne 645b898
Fixed bug on uri creation
nhne bd2030a
Added Exception e into throwing exception
nhne 6541d3c
Add `final` on Argument statement
nhne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add
final
?