org.chromium.sdk/src/org/chromium/sdk/internal/tools/v8/V8CommandOutput.java
changeset 2 e4420d2515f1
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.sdk.internal.tools.v8;
       
     6 
       
     7 import org.chromium.sdk.internal.tools.v8.request.DebuggerMessage;
       
     8 
       
     9 /**
       
    10  * Abstract sink for DebuggerMessage v8 messages. It is responsible for sending them to a
       
    11  * particular instance of V8 VM. For this end actual message may get additional fields or
       
    12  * be reformatted.
       
    13  */
       
    14 public interface V8CommandOutput {
       
    15   void send(DebuggerMessage debuggerMessage, boolean immediate);
       
    16 }