⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cbjxmessenger.html

📁 jxta的api库
💻 HTML
📖 第 1 页 / 共 3 页
字号:
<DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html#getLogicalDestinationAddress()">getLogicalDestinationAddress</A></CODE> in interface <CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html" title="interface in net.jxta.endpoint">Messenger</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html#getLogicalDestinationAddress()">getLogicalDestinationAddress</A></CODE> in class <CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html" title="class in net.jxta.impl.endpoint">BasicMessenger</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="isClosed()"><!-- --></A><H3>isClosed</H3><PRE>public boolean <B>isClosed</B>()</PRE><DL><DD>Returns <code>true</code> if this messenger is closed and no longer   accepting messages to be sent. The messenger should be discarded.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html#isClosed()">isClosed</A></CODE> in interface <CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html" title="interface in net.jxta.endpoint">Messenger</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html#isClosed()">isClosed</A></CODE> in class <CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html" title="class in net.jxta.impl.endpoint">BasicMessenger</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="isIdle()"><!-- --></A><H3>isIdle</H3><PRE>public boolean <B>isIdle</B>()</PRE><DL><DD>Returns <code>true</code> if this messenger is not currently sending any messages and  the messenger has not been used for "a long time". Thus suggesting that closing it would be good. <p/>The definition of idleness is up to the implementing message transport, but is usually based upon the cost of re-opening a closed connection versus continued idleness. <p/>This is default implementation.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html#isIdle()">isIdle</A></CODE> in interface <CODE><A HREF="../../../../../net/jxta/endpoint/Messenger.html" title="interface in net.jxta.endpoint">Messenger</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html#isIdle()">isIdle</A></CODE> in class <CODE><A HREF="../../../../../net/jxta/impl/endpoint/BasicMessenger.html" title="class in net.jxta.impl.endpoint">BasicMessenger</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="sendMessage(net.jxta.endpoint.Message, java.lang.String, java.lang.String)"><!-- --></A><H3>sendMessage</H3><PRE>public boolean <B>sendMessage</B>(<A HREF="../../../../../net/jxta/endpoint/Message.html" title="class in net.jxta.endpoint">Message</A>&nbsp;msg,                           java.lang.String&nbsp;service,                           java.lang.String&nbsp;serviceParam)                    throws java.io.IOException</PRE><DL><DD>Sends a message to the destination. The message will be sent to the  location specified by the destination endpoint address. The destination  address will be modified to include the provided optional service name  and service parameter.  <p/><b>WARNING:</b> The Message object should not be reused or modified  until <code>sendMessage</code> has completed. Concurrent modification of  a message while a messenger is sending the message will produce  incorrect and unpredictable results. For asynchronous messengers this   method provides no notification of message send completion thus the  message should <b>never</b> be reused. It is reccommended that a clone  of the message be provided to send message:  <p/><code><pre>      messenger.sendMessage( (Message) myMessage.clone() );  </pre></code>  <p/>Error Handling:  <ul>  <li>Common Aspects:      <ul>          <li>An <CODE>IOException</CODE> means that the message          was not sent and this messanger cannot be used to send          subsequent messages. Instances of          <CODE>RuntimeException</CODE> mean that the message was not          sent, but retries may or may not be possible based upon the          status returned by <A HREF="../../../../../net/jxta/endpoint/Messenger.html#isClosed()"><CODE>Messenger.isClosed()</CODE></A>.</li>          <li>A return result of <code>false</code> indicates that the          message was not accepted to be sent. Usually this is due to          local resource limits being reached. Attempts may be made to          later resend the message, usually after waiting for congestion          to clear.</li>      </ul>  </li>  <li>Synchronous Messengers:      <ul>          <li>A return result of <code>true</code> indicates that the          message was successfully sent. <b>It does not generally imply          that the destination will successfully receive the message.</b></li>      </ul>  </li>  <li>Asynchronous Messengers:      <ul>          <li>A return result of <code>true</code> indicates that the message          was accepted to be sent. <b>It does not imply that the message          will be sent or that the destination will receive the message.</b>          There will be no notification of any errors in sending the          message.</li>      </ul></li>  </ul><P><DD><DL><DT><B>Parameters:</B><DD><CODE>msg</CODE> - The message to send.<DD><CODE>service</CODE> - Optionally replaces the service in the destination  address. If <code>null</code> then the destination address's default  service will be used.  If the empty string ("") is used then  no service is included in the destination address.<DD><CODE>serviceParam</CODE> - Optionally replaces the service param in the  destination address. If <code>null</code> then the destination address's  default service parameter will be used. If the empty string ("") is used  then no service param is included in the destination address.<DT><B>Returns:</B><DD>boolean <code>true</code> if the message has been sent otherwise  <code>false</code>. <code>false</code>. is commonly returned for  non-error related congestion, meaning that you should be able to send  the message after waiting some amount of time.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - Thrown if the message cannot be sent.</DL></DD></DL><HR><A NAME="sendTo(net.jxta.endpoint.Message)"><!-- --></A><H3>sendTo</H3><PRE>boolean <B>sendTo</B>(<A HREF="../../../../../net/jxta/endpoint/Message.html" title="class in net.jxta.endpoint">Message</A>&nbsp;msg)         throws java.io.IOException</PRE><DL><DD>sendTo is used in order to send a message via the underlying messenger<P><DD><DL><DT><B>Returns:</B><DD>if true then message was sent, otherwise false.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - if there was a problem sending the message.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/CbJxMessenger.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>JXTA J2SE</EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../../../../net/jxta/impl/endpoint/cbjx/CbJxMessageInfo.html" title="class in net.jxta.impl.endpoint.cbjx"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../../../net/jxta/impl/endpoint/cbjx/CbJxTransport.html" title="class in net.jxta.impl.endpoint.cbjx"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="CbJxMessenger.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;&nbsp;<SCRIPT type="text/javascript">  <!--  if(window==top) {    document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');  }  //--></SCRIPT><NOSCRIPT>  <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_net.jxta.impl.endpoint.BasicMessenger">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR></BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -