Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make Received and Connected inherit from Tcp.Event #1229

Merged
merged 1 commit into from
Aug 10, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/Akka/IO/Tcp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public class Event : Message
/// Whenever data are read from a socket they will be transferred within this
/// class to the handler actor which was designated in the <see cref="Register" /> message.
/// </summary>
public sealed class Received
public sealed class Received : Event
{
public Received(ByteString data)
{
Expand All @@ -500,7 +500,7 @@ public Received(ByteString data)
/// in the <see cref="Bind" /> message. The connection is characterized by the `remoteAddress`
/// and `localAddress` TCP endpoints.
/// </summary>
public sealed class Connected
public sealed class Connected : Event
{
public Connected(EndPoint remoteAddress, EndPoint localAddress)
{
Expand Down