Skip to content

Commit

Permalink
adding an exception classed TransportException which is thrown when t…
Browse files Browse the repository at this point in the history
…here is an exception with the underlying transport (#81)
  • Loading branch information
robertroeser authored and stevegury committed May 2, 2016
1 parent 05d8bd1 commit 119ef1e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ if (project.hasProperty('release.useLastTag')) {
test {
testLogging.showStandardStreams = true
}

compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
8 changes: 3 additions & 5 deletions src/main/java/io/reactivesocket/DuplexConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@
*/
package io.reactivesocket;

import java.io.Closeable;

import org.reactivestreams.Publisher;

import io.reactivesocket.rx.Completable;
import io.reactivesocket.rx.Observable;
import org.reactivestreams.Publisher;

import java.io.Closeable;

/**
* Represents a connection with input/output that the protocol uses.
*/
public interface DuplexConnection extends Closeable {
// TODO should we call this 'Connection'? 'SocketConnection'? 'ReactiveSocketConnection'?

Observable<Frame> getInput();

Expand Down
28 changes: 28 additions & 0 deletions src/main/java/io/reactivesocket/exceptions/TransportException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/**
* Copyright 2015 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.reactivesocket.exceptions;

public class TransportException extends Throwable {
public TransportException(Throwable t) {
super(t);
}

@Override
public synchronized Throwable fillInStackTrace() {
return this;
}

}

0 comments on commit 119ef1e

Please sign in to comment.