com.squareup.okhttp.internal.NamedRunnable Java Examples

The following examples show how to use com.squareup.okhttp.internal.NamedRunnable. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SpdyConnection.java    From cordova-android-chromeview with Apache License 2.0 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(
      new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
        @Override public void execute() {
          try {
            writeWindowUpdate(streamId, deltaWindowSize);
          } catch (IOException ignored) {
          }
        }
      });
}
 
Example #2
Source File: SpdyConnection.java    From cordova-amazon-fireos with Apache License 2.0 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #3
Source File: SpdyConnection.java    From cordova-amazon-fireos with Apache License 2.0 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #4
Source File: SpdyConnection.java    From cordova-amazon-fireos with Apache License 2.0 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #5
Source File: SpdyConnection.java    From phonegapbootcampsite with MIT License 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #6
Source File: SpdyConnection.java    From phonegapbootcampsite with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #7
Source File: SpdyConnection.java    From phonegapbootcampsite with MIT License 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #8
Source File: SpdyConnection.java    From CordovaYoutubeVideoPlayer with MIT License 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #9
Source File: SpdyConnection.java    From CordovaYoutubeVideoPlayer with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #10
Source File: SpdyConnection.java    From CordovaYoutubeVideoPlayer with MIT License 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #11
Source File: SpdyConnection.java    From cordova-android-chromeview with Apache License 2.0 5 votes vote down vote up
void writeSynResetLater(final int streamId, final int statusCode) {
  executor.submit(
      new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
        @Override public void execute() {
          try {
            writeSynReset(streamId, statusCode);
          } catch (IOException ignored) {
          }
        }
      });
}
 
Example #12
Source File: SpdyConnection.java    From L.TileLayer.Cordova with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #13
Source File: SpdyConnection.java    From cordova-android-chromeview with Apache License 2.0 5 votes vote down vote up
private void writePingLater(final int streamId, final Ping ping) {
  executor.submit(new NamedRunnable(String.format("Spdy Writer %s ping %d", hostName, streamId)) {
    @Override public void execute() {
      try {
        writePing(streamId, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #14
Source File: SpdyConnection.java    From wildfly-samples with MIT License 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #15
Source File: SpdyConnection.java    From wildfly-samples with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #16
Source File: SpdyConnection.java    From wildfly-samples with MIT License 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #17
Source File: SpdyConnection.java    From phonegap-plugin-loading-spinner with Apache License 2.0 5 votes vote down vote up
void writeSynResetLater(final int streamId, final int statusCode) {
  executor.submit(
      new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
        @Override public void execute() {
          try {
            writeSynReset(streamId, statusCode);
          } catch (IOException ignored) {
          }
        }
      });
}
 
Example #18
Source File: SpdyConnection.java    From phonegap-plugin-loading-spinner with Apache License 2.0 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(
      new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
        @Override public void execute() {
          try {
            writeWindowUpdate(streamId, deltaWindowSize);
          } catch (IOException ignored) {
          }
        }
      });
}
 
Example #19
Source File: SpdyConnection.java    From phonegap-plugin-loading-spinner with Apache License 2.0 5 votes vote down vote up
private void writePingLater(final int streamId, final Ping ping) {
  executor.submit(new NamedRunnable(String.format("Spdy Writer %s ping %d", hostName, streamId)) {
    @Override public void execute() {
      try {
        writePing(streamId, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #20
Source File: SpdyConnection.java    From crosswalk-cordova-android with Apache License 2.0 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #21
Source File: SpdyConnection.java    From crosswalk-cordova-android with Apache License 2.0 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #22
Source File: SpdyConnection.java    From crosswalk-cordova-android with Apache License 2.0 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #23
Source File: SpdyConnection.java    From reader with MIT License 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #24
Source File: SpdyConnection.java    From android-discourse with Apache License 2.0 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
    executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
        @Override
        public void execute() {
            try {
                writeSynReset(streamId, errorCode);
            } catch (IOException ignored) {
            }
        }
    });
}
 
Example #25
Source File: SpdyConnection.java    From android-discourse with Apache License 2.0 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
    executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
        @Override
        public void execute() {
            try {
                writeWindowUpdate(streamId, deltaWindowSize);
            } catch (IOException ignored) {
            }
        }
    });
}
 
Example #26
Source File: SpdyConnection.java    From android-discourse with Apache License 2.0 5 votes vote down vote up
private void writePingLater(final boolean reply, final int payload1, final int payload2, final Ping ping) {
    executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x", hostName, payload1, payload2) {
        @Override
        public void execute() {
            try {
                writePing(reply, payload1, payload2, ping);
            } catch (IOException ignored) {
            }
        }
    });
}
 
Example #27
Source File: SpdyConnection.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
private void writePingLater(
    final boolean reply, final int payload1, final int payload2, final Ping ping) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %08x%08x",
      hostName, payload1, payload2) {
    @Override public void execute() {
      try {
        writePing(reply, payload1, payload2, ping);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #28
Source File: SpdyConnection.java    From bluemix-parking-meter with MIT License 5 votes vote down vote up
void writeSynResetLater(final int streamId, final ErrorCode errorCode) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeSynReset(streamId, errorCode);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #29
Source File: SpdyConnection.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}
 
Example #30
Source File: SpdyConnection.java    From bluemix-parking-meter with MIT License 5 votes vote down vote up
void writeWindowUpdateLater(final int streamId, final int deltaWindowSize) {
  executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
    @Override public void execute() {
      try {
        writeWindowUpdate(streamId, deltaWindowSize);
      } catch (IOException ignored) {
      }
    }
  });
}